The while statement in the following code loops for times.int i=0;while (i<10) { if (i<1) continue; if (i==5) break; i++;}
A: 1
B: 10
C: 6
D: infinite
A: 1
B: 10
C: 6
D: infinite
举一反三
- The while statement in the following code loops for times.int i=0;while (i<10) { if (i<1) continue; if (i==5) break; i++;} A: 1 B: 10 C: 6 D: infinite
- main() { int i=0; while(i<10) { if(i<1) continue; if(i==5) break; i++; } }
- $i = 0;while ($i<10){ if ($i<1){ continue; } if ($i==5){ break; } $i++;}。 A: 6 B: 1 C: 死循环 D: 10
- 阅读下面程序,while循环的次数是。 int i=0; while(i<10){ i++; if(i<1) continue; if(i==5) break; }
- 设有int i=0;则以下while循环的执行次数是( ) while(i<10) { if(i<1) continue; if(i==5) break; i++; }