问题:
public class Foo {
public static void main (String args) {
int i = 1;
int j = i++;
if ((i>++j) && (i++ ==j)) {
i +=j;
}
}
}
What is the final value of i?()
A . 1
B . 2
C . 3
D . 4
E . 5
public class Foo {
public static void main (String args) {
int i = 1;
int j = i++;
if ((i>++j) && (i++ ==j)) {
i +=j;
}
}
}
What is the final value of i?()
● 参考解析
本题暂无解析