我哪里错了?20分求助 1# ac
2# 超时
3# wa
4# 超时
5# 超时
#include<bits/stdc++.h> using namespace std; int main(){ int s,step = 0,juli = 0; cin>>s; double power = 2; while(power>0&&juli<s){ juli+=power; step++; power*=0.98; } cout<<step; return 0; }