public class WhileTest02{ public static void main(String[] args){ //用while循环输出1~10 int i = 1; while(i <= 10){ System.out.println(i++);//1 2 3 4 5 6 7 8 9 10 } System.out.println("end -->" + i);//11 System.out.println("======================================"); int j = 10; while(j > 0){ System.out.println(j--);//【先赋值结果为10】10 9 8 7 6 5 4 3 2 1 } System.out.println("end -->" + j);//0【最后j--赋值为1,执行减减操作1-1=0】 System.out.println("======================================"); int k = 10; while(k >= 0){ System.out.println(--k);//【先计算结果为9】9 8 7 6 5 4 3 2 1 0 -1[0>=0 所以执行--操作] } System.out.println("end -->" + k);//-1[0>=0 所以执行--操作] } }