编程题,一张足够大的纸,厚0.5毫米,问折叠多少次会超过8844.43米_百度...
发布网友
发布时间:2024-10-22 23:32
我来回答
共3个回答
热心网友
时间:2024-11-09 21:11
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int exp = 0;
double x = 0.0;
double h = 0.5 * System.Math.Pow(10, -3);
while (x <= 8844.43)
{
exp++;
x = h * System.Math.Pow(2, exp);
}
Console.Write("需要折叠{0}次",exp);
Console.ReadLine();
}
}
}
25次
热心网友
时间:2024-11-09 21:17
25
热心网友
时间:2024-11-09 21:12
没太看懂,描述详细点。