Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
120587 葛屹阳 计算平均数 C++ Wrong Answer 0 MS 268 KB 264 2025-05-30 19:57:03

Tests(0/10):


Code:

#include<iostream> using namespace std; int main() { int a[11]; float he=0; for(int i=1;i<=5;i++) { cin>>a[i]; he=he+a[i]; } printf("%.2f\n",he/5); for(int i=1;i<=5;i++) { if(a[i]>he/5){ cout<<a[i]; } } return 0; }


Run Info:

------Input------
679 849 98 256 256
------Answer-----
427.60 679 849
------Your output-----
427.60 679849