问题标题: 酷町堂:1007 纸的厚度Time Limit Exceeded

0
0
已解决
周天睿
周天睿
初级光能
初级光能
#include<iostream>
using namespace std;
int main()
{
    long long int paper=0.1,zf=8848000,cishu=0;
    while(paper<=zf)
    {
        paper*=2;
        cishu++;
    }
    cout<<cishu;
    return 0;
}

Time Limit Exceeded!!!!!


0
已采纳
贾文卓
贾文卓
高级光能
高级光能

你一上来就赋值为0,最后怎么乘都是0!!!应该赋值为1!!!

1
0
0
我要回答