| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 363356 | 吴鑫昊 | 【C2-6】平均身高 | C++ | Accepted | 100 | 1 MS | 240 KB | 219 | 2025-11-23 18:31:27 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,x; double sum=0; cin>>n; for(int i=1;i<=n;i++){ cin>>x; sum+=x; } cout<<"AVE="<<fixed<<setprecision(1)<<sum/n<<endl; return 0; }