Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
124148 | 陈梓钒 | 计算平均数 | C++ | Accepted | 1 MS | 268 KB | 254 | 2025-07-11 10:05:22 |
#include<bits/stdc++.h> using namespace std; int a[10]; int main(){ int s=0; for(int i=1;i<=5;i++){ cin>>a[i]; s += a[i]; } printf("%.2lf\n",s/5.0); for(int i=1;i<=5;i++){ if(a[i]>s/5.0){ cout<<a[i]<<" "; } } return 0; }