码迷,mamicode.com
首页 > 其他好文 > 详细

2、while循环和 do while 的区别

时间:2014-12-15 13:24:14      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   div   log   bs   as   

package com.xxx.xxx;

public class demo3 {

    /**
     * while 和  do while 的区别
     * @param args
     */
    public static void main(String[] args) {

        int a = 100;
        
        while(a == 60){
            System.out.println("ok1");
            a--;
        }
        
        int b = 100;
        
        //不管 真假 ,都会执行一次
        do{
            System.out.println("ok2");
            b--;
        }while( b == 60);
    }
    

}

 

2、while循环和 do while 的区别

标签:style   blog   ar   color   sp   div   log   bs   as   

原文地址:http://www.cnblogs.com/spadd/p/4164484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!