下列不构成无限循环的语句或语句组是( )。
A: n=0;
B: do++n;)while(n<=0);
C: n=0;
D: while(1)n++;
E: while(n=10);n--;
F: for(n=0,i=1; ;i++)n+=i
A: n=0;
B: do++n;)while(n<=0);
C: n=0;
D: while(1)n++;
E: while(n=10);n--;
F: for(n=0,i=1; ;i++)n+=i
举一反三
- 下列不构成无限循环的语句或语句组是()。 A: n=0; B: do ++n; while (n<=0); C: n=0; D: while (1) n++; E: n=10; F: While (n); n--; G: 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=0; B: do++n;while(n<=0); C: n=0; D: while(1)n++; E: n=10; F: while(n);n--; G: 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: A、n=0; B: B、n=0; C: do++n;while(n<=0); D: while(1)n++ E: C、n=10; F: D、for(n=0,i=1;;i++)n+=i; G: while(n);n--;)