public static void main(String[] args)throws IOException {
int x = 4;
int y = 5;
if(x++>4&++y>5) {
System.out.println("自增前"+x);//不打印,表示没进循环
x++;//然后这里也执行自增
System.out.println("自增后"+x);//不打印
}
System.out.println("x=" + x + ",y=" + y);//最后输出来x的值怎么是5呢= =求解答...
}
没进去循环
只是 x,y自增了一次
|