问题:
public class test (
public static void main(string args) {
int 1= 0;
while (i) {
if (i==4) {
break;
}
++i;
}
}
)
What is the value of i at line 10?()
A . 0
B . 3
C . 4
D . 5
E . The code will not compile.
public class test (
public static void main(string args) {
int 1= 0;
while (i) {
if (i==4) {
break;
}
++i;
}
}
)
What is the value of i at line 10?()
● 参考解析
本题暂无解析