首页 > 代码库 > while循环与i--

while循环与i--

         int i = 5;
         while(i-- > 0){
             System.out.println("i="+i);
         }

 

打印结果:

i=4
i=3
i=2
i=1
i=0

 

 

while循环与i--