public class LoopTest {
public static void main(String[] agrs) {
int j = 1;
while(j<3) {
System.out.println("zx");
j++;
}
System.out.println(j);
System.out.println("--------");
}
}
为什么J=3呢,不是只输出两次吗?
这个++操作是把原始的值1加上了循环后的值2了么?这样理解对吗