| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128330 | 徐王子 | 计算平均数 | C++ | Wrong Answer | 1 MS | 276 KB | 267 | 2025-08-15 08:53:33 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[1001]={0},s=0; float x=0.00; for(int i=1;i<=5;i++){ cin>>a[i]; s+=a[i]; } x=s/5; printf("%.2lf",x); for(int i=1;i<=5;i++){ if(a[i]>x){ cout<<a[i]<<" "; } } return 0; }
------Input------
679 849 98 256 256
------Answer-----
427.60 679 849
------Your output-----
427.00679 849