黑马程序员技术交流社区
标题:
(解法2)用while循环完成如下案例 已知纸张厚度:0.01米...
[打印本页]
作者:
桑葚之甜
时间:
2015-9-27 15:05
标题:
(解法2)用while循环完成如下案例 已知纸张厚度:0.01米...
//解法2
/*class Test1 {
public static void main(String[] args) {
int x=1;
int y=(int)Math.pow(2,x);
double k=y*0.01;
while(k<=8848) {
x++;
y=(int)Math.pow(2,x);
k=y*0.01;
}
System.out.println(x);
}
}*/
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2