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

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

下列语句中,不能实现循环100次的是( )。

A.N=0

Do

N=N+1

Loop Until N >=100

B.N=0

Do

N=N+1

Loop While n <100

C.N=0

N=N+1

Do

Loop Until N <100

D.N=0

Do While n <100

N=N+1

Loop


参考答案

更多 “ 下列语句中,不能实现循环100次的是( )。A.N=0DoN=N+1Loop Until N =100B.N=0DoN=N+1Loop While n 100C.N=0N=N+1DoLoop Until N 100D.N=0Do While n 100N=N+1Loop ” 相关考题
考题 以下不构成无限循环的语句或者语句组是( )。A.n=0;B.n=0; do{++n;}while(n<=0); while(1){n++}C.n=10;D.for(n=0,i=1;;i++)n+=i; while(n);{n--;)

考题 下列语句中,不能实现循环100次的是A.N=0 Do N=N+1 Loop Until N>=100B.N=0 Do N=N+1 Loop While n<100C.N=0 N=N+1 Do Loop Until N<100D.N=0 Do While n<100 N=N+1 Loop

考题 下列不构成无限循环的语句或语句组是( )。A.n=0; do{++n;)while(n=0);B.n=0; while(1){n++;)C.while(n=1O);{n--;}D.for(n=0,i=1;;i++)n+=i

考题 下列不构成无限循环的语句或语句组是( )。A.n=0; do {++n;} while (n<=0);B.n=0; while (1) {n++;}C.n=10; While (n); {n--;}D.for(n=0, i=1; ;i++)n+=i

考题 以下不构成无限循环的语句或语句组是()。A.n=0;do {++n;} while (n<=0);B.n=0;while (1) { n++;}C.n=10; while (n); {n--;}D.for(n=0,i=1; ; i++) n+=i;

考题 以下不构成无限循环的语句或语句组是_______。A.n=10; while(n);{n--;}B.n=0; while(1){n++;}C.n=0; do{++n;}while(n<=0);D.for(n=0,i=1;;i++)n+=i;

考题 8、以下不构成无限循环的语句或语句组是()。A.n=10; while (n); {n--;}B.n=0; while (1) { n++;}C.n=0; do {++n;} while (n<=0);D.for(n=0,i=1; ; i++) n+=i;

考题 31、以下不构成无限循环的语句或语句组是()。A.n=0;do {++n;} while (n<=0);B.n=0;while (1) { n++;}C.n=10; while (n); {n--;}D.for(n=0,i=1; ; i++) n+=i;

考题 以下不会构成死循环的语句或语句组是?()A.n=0; do{ ++n; }while(n<=0);B.n=0; while(1) { n++; }C.n=10; while(n); { n--; }D.for(n=0,i=1; ;i++) n+=i;