| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148110 | 李昊阳 | 财务管理 | C++ | Wrong Answer | 0 MS | 272 KB | 284 | 2026-02-09 16:55:53 |
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main(){ double a=0; double t=0; for(int i=0;i<12;i++){ cin>>t; a+=t; } double s=a/12; cout << fixed<<setprecision(2)<<"¥"<<s<<endl; return 0; }
------Input------
12345.12 12434.45 42524.56 86342.11 23436.67 75443.45 43565.90 54342.00 11111.33 34365.09 12231.32 21344.65
------Answer-----
¥35790.55
------Your output-----
¥35790.55