题目:
下面程序段的运行结果是 ( ) int x=3; do { printf(" %d\n",x -=2);} while(!(--x));
下面程序段的运行结果是 ( ) int x=3; do { printf(" %d\n",x -=2);} while(!(--x));
A、break语句是switch语句的一部分 B、在switch语句中,可以根据需要使用或者不使用break语句 C、在switch语句中,必须使用break语句 D、break语句是for语句的一部分 参考答案:B...
A、register B、auto C、static D、extern 参考答案:B...
A、2,4,3,9,12,12,11,11,18,18, B、3,4,2,7,9,8,6,5,11,10, C、2,3,1,6,8,7,5,4,10,9, D、1,2,3,6,8,7,5,4,10,9, 参考答案:A...
A、无限次 B、0次 C、1 次 D、2次 参考答案:B...