| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78130 | sh25_shengmy | 求平均年龄 | C++ | 编译错误 | 0 MS | 0 KB | 231 | 2025-12-26 15:23:54 |
include <bits/stdc++.h> using namespace std; int main() { double n; cin >> n; double a,tot; for(int i = 0;i<n;i++) { cin >> a; tot+=a; } tot= tot/n; cout <<fixed<<setprecision(2) <<tot<<endl; return 0; }