以下不会构成死循环的语句或语句组是?( )? n=0;;
do{
;;;++n;
}while(n<=0);|n=0;;
while(1)
;;;{;n++;;}|for(n=0,i=1;;;i++);
;;;n+=i;|n=10;;
while(n);
;;;{;n--;;}
do{
;;;++n;
}while(n<=0);|n=0;;
while(1)
;;;{;n++;;}|for(n=0,i=1;;;i++);
;;;n+=i;|n=10;;
while(n);
;;;{;n--;;}
举一反三
- 【单选题】若如下不构成无限循环的语句或语句组是(). 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;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;while(1)<br/>{ n++; } B: n=0;do{++n;}<br/>while(n C: n=10;while(n)<br/>;{n--;} D: for(n=0,i=1;;i++)<br/>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: int n=0do{++n;} while (n<=0); B: int n=0; while (1)n++; C: int n=10; while (n); n--; D: int n=0,i;for (n=0,i=1; ;i++)n+=i;