题目内容

下面有关for循环的正确描述是( )

A. for循环只能用于循环次数已经确定的情况
B. for循环时先执行循环体语句,后判断表达式
C. 在for循环中,不能用break语句跳出循环体
D. for循环的循环体语句可以包含多条语句,但必须用花括号括起来。

查看答案
更多问题

下面程序段的循环次数时( )int k=0;while(k<10){ if(k<1) continue;If(k==5) break;K++;}

A. 5
B. 6
C. 4
D. 死循环,不能确定循环次数

有如下程序:#include main(){ int x=3;do{printf(“%d”,x--);}while(!x);}程序的运行结果是( )

A. 3 2 1
B. 2 1 0
C. 3
D. 2

以下程序的运行结果是( )#include main(){ int a,b;for(a=1,b=1;a<=100;a++){if(b>=10) break;if(b%3==1) { b+=3; continue;}}printf(“%d”,a);}

A. 101
B. 3
C. 4
D. 5

以下程序的运行结果是()#include main(){ int c=0,k;for(k=1;k<3;k++)switch(k){ default: c+=k;case 2: c++; break;case 3: c+=2; break;}printf(“%d”,c);}

A. 3
B. 5
C. 7
D. 9

答案查题题库