23,404
社区成员
发帖
与我相关
我的任务
分享
public class IntegerTest {
public static void main(String[] args) {
int a = 3;
int x = 3*a++;
int y = 3*++a;
System.out.println(x);
System.out.println(y);
}
}



10
33...不知道自己怎么会得到10和33的...正确答案9---15
9,15 接分
我错了
霸气侧漏了