| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 33592 | yanxiaorui | 人口增长 | C++ | Compile Error | 0 MS | 0 KB | 182 | 2023-12-10 19:33:44 |
#include<iostream> using namespace std; int main() { int n,x,i; cin>>n>>x; while(i<=n){ i++; x=x*(1+0.001); } cout<<fixed<<setprecision(4)<<x<<endl; return 0; }