Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7605 | 余立涵 | 13求7个数的平均数 | C++ | Wrong Answer | 3 MS | 260 KB | 173 | 2025-05-05 18:10:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int s,i=0; for(int a=0;a<=7;a++){ cin>>s; i=i+s; } cout<<i/7<<endl; return 0; }
------Input------
73 74 54 78 60 20 9
------Answer-----
52
------Your output-----
53