Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
33599 | yanxiaorui | 人口增长 | C++ | 解答错误 | 0 MS | 240 KB | 207 | 2023-12-10 19:42:18 |
#include<iostream> #include<iomanip> using namespace std; int main() { double n,x; int i=0; cin>>n>>x; while(i<=n){ i++; x=x*(1+0.001); } cout<<fixed<<setprecision(4)<<x; return 0; }