3. What is the name of the hero?
查看答案
4. What is the name of the woman saved?
C语言while语句中,用于条件的表达式是:
A. 关系表达式
B. 逻辑表达式
C. 算术表达式
D. 任意表达式
已知int a=1, x=1; 循环语句while (a<10)x++;a++;的循环执行:
A. 无限次
B. 不确定次
C. 10次
D. 9次
下面的while循环,执行次数是:i=4;while(--i)printf("%d",i);
A. 3次
B. 4次
C. 0次
D. 无数次