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

while 解决 10000米绳子 对折当 绳长小于5米时求绳的对折次数

时间:2017-09-29 21:17:59      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:string   print   ++   while   str   oid   ble   public   main   

public static void main(String args[]){

double length = 10000;

int day = 0;

 

while(day > 5){

length = length * 5;

day++;

}

System.out.println(day);

}

while 解决 10000米绳子 对折当 绳长小于5米时求绳的对折次数

标签:string   print   ++   while   str   oid   ble   public   main   

原文地址:http://www.cnblogs.com/chenligeng/p/7612538.html

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