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
正确答案:B
答案解析:有
微信扫一扫手机做题
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?()
微信扫一扫手机做题