- public class Test8 {
- /**
- * 计算纸张折叠成珠穆朗玛峰高度的次数
- */
- public static void main(String[] args) {
- double height = 8843;// 珠峰的高度
- double count = 0,h = 1;// 折叠的次数
- while (h < height) {
- h *= 2;
- count++;
- }
- System.out.println("折叠的次数:" + count);
- }
- }
- // 输出结果:
- // 折叠的次数:14
复制代码 |
|