【单选题】在厚约1厘米的原料上用斜刀推剞,深度为五分之四,然后转90度,顶刀将原料切断的刀法是( )
【简答题】写出下列程序段的运行结果 . #include int main() { int a=4,b=5,c=0,d; d=!a && !b || !c; printf("%d\n",d); return 0; }
【简答题】写出下列程序段的运行结果。 int a[ ]={1, 4, 2, -4, 7, 10, -6}, i, s = 0; for( i=0; i<4; i++) s=s + a[i]; printf (”%d”, s);
【单选题】科学家爱因斯坦总结出 “ 成功=艰苦的劳动 + 正确的方法 + 少说空话 ” 的公式。这表明
【简答题】写出下列程序片段的运行结果_________。 int sq(int i) { int a; a=i*i; return(a); } int main() { int n; n=2; printf("%d\n",sq(n)); }
【简答题】写出下列程序段运行时的输出结果。 #include void main() { int a=32; char c='a',b; b=c-a; printf("%c\n",b); }
【简答题】写出下列程序段的运行结果 . int main() { int a=4,b=5,c=0,d; d=!a && !b || !c; printf("%d\n",d); return 0; }