Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90824 | 杜春雨 | 13投资金额 | C++ | Wrong Answer | 1 MS | 276 KB | 184 | 2024-09-16 17:34:11 |
# include<iostream> using namespace std; int main(){ float a=0; cin>>a; for(int i=1;i<=20;i++){ a+=0.2*a; } cout<<a<<endl; return 0; }
------Input------
92
------Answer-----
3464
------Your output-----
3527.06