下面对i值的输出结果说法正确的是(A)namespaceAnswer{classProgram{staticvoidMain(string[]args){inti=0;do{i++;}while(i<5);Console.WriteLine(“i值的为:{0}”,i);}}}
A: i的值为:5
B: i的值为:6
C: i的值为:7
D: i的值为:8
A: i的值为:5
B: i的值为:6
C: i的值为:7
D: i的值为:8
举一反三
- inti=5,s=0;do{if(i%2)continue;elses+=i;}while(--i);程序段执行后s的值为:
- Python 表达式[i for i in range(5) if i%2!=0]的值为__1__,[i**2 for i in range(3)]的值为__2__。
- 以下程序段的运行后,a的值为: int a,i; a=0;i=1; while(i<=5) { a=a+i; i++; }
- int i=0; while( i++ <; 5); 循环结束后i的值是( )。 A: 6 B: 7 C: 5 D: 8
- int i=0; while(i<=15) {printf("%d",i);i++;} 循环结束后,i的值为