Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5916 | 詹梓涵 | 13求7个数的平均数 | C++ | Wrong Answer | 0 MS | 256 KB | 193 | 2024-12-21 09:46:06 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ int a,s=0; for(int i=1;i<=7;i++){ cin>>a; s=s+a; } cout<<s<<endl; return 0; }
------Input------
73 74 54 78 60 20 9
------Answer-----
52
------Your output-----
368