网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

在下列选项中,没有构成死循环的程序是( )。

A.int i=100; while(1) { i=i%100+1; if(i>100)break; }

B.for(;;);

C.int k=1000; do{++k} while (k>=1000);

D.int s=36; while(s);--s;


参考答案

更多 “ 在下列选项中,没有构成死循环的程序是( )。A.int i=100; while(1) { i=i%100+1; if(i>100)break; }B.for(;;);C.int k=1000; do{++k} while (k>=1000);D.int s=36; while(s);--s; ” 相关考题
考题 在下列选项中,没有构成死循环的是A.int i=100; while(1) { i=i%100+1; if(i100)break; }B.for(;;);C.int k=10000; do{k++;}while(k10000);D.)int s=36; while(s)--s;

考题 在下列选项中,没有构成死循环的是A.int i=100; while(1) { i=i%100+1; if(i>100)break; }B.for(;;);C.int k=10000; do{k++;}while(k>10000);D.int s=36; while(s)--s;

考题 在下列选项中,没有构成死循环的程序段是_____。A.int i=100; while(1) { i=i%100+1; if(i>100)break; }B.for(;;);C.int k=1000; do{++k;}while(k>=1000);D.int s=36: while(s);--s;

考题 在下列选项中,没有构成死循环的程序是( )。A.int i=100; while(1) { i=i%100+1; if(i> 100)break; }B.for(;;);C.int k=1000; do{++k} while(k>=1000);D.int s=36;while(s);--s;

考题 2、在下列选项中,没有构成死循环的程序段是()A.int i=100; while(1) {i=i%100+1; if(i>100)break; }B.for(;;)C.int k=1000; do { ++k; } while(k>=10000);D.int s=36; while(s); --s;

考题 在下列选项中,没有构成死循环的程序段是____A.int i=100; while (1) { i=i%100+1; if (i>100) break; }B.for(; ; );C.int s=26; while (s) --s;D.int k=1000; do {++k; } while (k>=1000);

考题 在下列选项中,没有构成死循环的程序段是()A.int i=100; while(1) {i=i%100+1; if(i>100)break; }B.for(;;)C.int k=1000; do { ++k; } while(k>=10000);D.int s=36; while(s); --s;

考题 【单选题】在下列选项中,没有构成死循环的程序段是______。A.int i=100; while(1) { i=i%100+1; if(i>100)break; }B.for(; ;) ;C.int k=1000; do{++k;} while(k>=10000);D.int s=36; while(s);--s;

考题 在下列选项中,没有构成死循环的是()。A.int i=100; while(1){ i=i%100+1; if(i>100) break; }B.for(;;);C.int k=10000; do{ k++;} while(k>10000);D.int s=36; while(s) --s;