Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94707 刘佳宇 13投资金额 C++ Accepted 1 MS 272 KB 157 2024-10-26 11:14:24

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int x; cin>>x; for(int i=1;i<=20;i++){ x=x+0.2*x; } cout<<x; }