| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 70480 | sh25_ganzy | 人口增长 | C++ | 编译错误 | 0 MS | 0 KB | 209 | 2025-10-17 16:23:21 |
#include<bits/stdc++> using namespace std; int main(){ double x; int n; cin>>x>>n; for(int i=1;i<=n;i++){ x*=1.001; } cout<<fixed<<setprecision(4)<<x; return 0; }