请输入要找答案的题目关键词:

全部考试试题列表

[单选题]字符串"A+B=12\n"的长度为( )。 
[单选题]字符串"Its\40\n"的长度为(  )。 
[单选题]字符串"A+B=12\n"的长度为( )。 
[单选题]字符串"A+B=12\n"的长度为( )。 
[单选题]字符串"Its\40\n"的长度为(  )。 
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main() { int x=36,y=48,z; do {z=x%y; x=y; y=z;} while(y>0); printf("x=%d\n",x); }
[单选题]字符串"Its\40\n"的长度为(  )。 
[单选题]字符串"A+B=12\n"的长度为( )。 
[填空题]执行下面程序的输出结果为( )。 #include void main( ){ int a=5,b=8,c=6,d=15,x,y; if (a>=b) x=a; else x=b; if(c>=d) y=c; else y=d; if(x>=y) printf(“%d\n”,x); else printf(“%d\n”,y); } 
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main() { int i=0, s=0; while(s<50) {i+=2; s+=i*i;} printf("s=%d\n",s); }
[填空题]执行下面程序的输出结果为(      )。 #include Void main() { int a=25,b=18; if(a>b) printf(“%s\n”,”a>b”); if(a==b) printf(“%s\n”,”a==b”); if(a
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main() { int a=5,b=8,c; if(3*a>2*b) c=2*a+3*b; else if(a==b) c=a*a+b*b; else c=a*b+3; printf("c=%d\n",c); }
[判断题]当循环次数确定时,while循环语句不能转换为for循环语句。( ) 
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main(){ int a[8]={12,15,20,8,5,9,16,10};int i,x=a[0]; for(i=1;i<8;i++) if(a[i]>x) x=a[i]; printf(“%d\n”,x) }
[判断题]定义结构类型的变量时,能够同时进行初始化。( ) 
[判断题]在C语言程序上机操作的过程中,编译程序的操作步骤之后直接是运行操作。( ) 
[填空题]执行下面程序的输出结果为( )。 #include void main( ){ int a[8]={3,8,6,5,9,2,8,5}; int i ,s=0; for(i=0;i<8;i++) if(i%2) s+=a[i]; prinft(“s=%d\n”,s); } 
[填空题]执行下面程序的输出结果为( )。 #include void main( ){ int a[3][3]={{3,2,6},{5,4,2},{1,5,6}}; int i, j, s=0; for(i=0; i<3; i++) for(j=0;j<3;j++) s+=a[i][j]; printf(“s=%d\n”,s);. } 
[填空题]程序的编译单位是一个 () 
[判断题]在C语言程序中,对于递归函数和非递归函数,其函数头部有区别标志。( ) 
[单选题]字符串"A+B=12\n"的长度为( )。 
[填空题]执行下面程序的输出结果为( )。 #include void main( ){ int n=1; y=0; while(n<10) {y+=n; n+=2;} printf(“y=%d\n”, y); } 
[填空题]执行“typeDef int DAtAType;”语句后,在使用int定义整型变量的地方也可以使用()来定义整型变量。 
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main() { int x,p=2; scanf("%d",&x); while(x>=p) if(x%p==0) {printf("%d=%d*%d\n",x,p,x/p); break;} else p++; }
[判断题]在一条变量定义语句中,可以同时定义不同类型的变量。( ) 
[单选题]字符串"A+B=12\n"的长度为( )。 
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main(){ int a[3][3]=__13,18,16},{15,19,12},{8,15,22__;int i,j,x=a[0][0]; for(i=1;i<3;i++) for(j=0;j<3;j++) if(a[i][j]
[单选题]字符串"Its\40\n"的长度为(  )。 
[填空题]程序填空题:执行下面程序的输出结果为( )。 #include void main() { int x=5,y=0; switch(2*x-3) { case 4: y+=x; case 7: y+=2*x+1; case 10: y+=3*x; } printf("y=%d\n",y); }
[填空题]存储一个空字符串需要占用()个字节。 

共有 84296  条记录,当前 470 / 2810 ,每页  30 条。