#include<iostream>
#include<math.h>
using namespace std;
int main(){
double n,m;
int t=0;
cin>>n;
m=45;
while(m<n){
m*=1.01;
t++;
}
cout<<t+1980<<endl;
return 0;
}
1117 人口问题
最新推荐文章于 2021-10-14 18:56:29 发布
#include<iostream>
#include<math.h>
using namespace std;
int main(){
double n,m;
int t=0;
cin>>n;
m=45;
while(m<n){
m*=1.01;
t++;
}
cout<<t+1980<<endl;
return 0;
}