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

循环语句

时间:2016-01-05 12:28:03      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

public class xunhuan1 {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根

        double a = 1;
double b = 0.00008; while (b < 8848) { b *= 2; a++; // System.out.println(b); } //System.out.println(b); System.out.println("一张纸折叠"+a+"次可达到珠穆拉玛峰的高度"); } }

 

public class xunhuan1 {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根
int j=1;
        for(double i=0.00008;i<8848;i*=2,j++)
        {
            //System.out.println(i);
        }
        System.out.println("一张纸折叠"+j+"次可达到珠穆拉玛峰的高度");
    }

}

 

循环语句

标签:

原文地址:http://www.cnblogs.com/zhanghaozhe8462/p/5101873.html

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