Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38308 | yuzhengxun | 人口增长 | C++ | 通过 | 0 MS | 240 KB | 197 | 2024-01-26 15:28:59 |
#include<bits/stdc++.h> using namespace std; int main() { double x; int n=0,i=1; cin>>x>>n; while(i<=n){ x=x*(1+0.001); i=i+1; } cout<<fixed<<setprecision(4)<<x; return 0; }