Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5819 吴承熹 13求7个数的平均数 C++ Accepted 0 MS 260 KB 197 2024-12-15 12:57:20

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a=0; int b; for(int i=1;i<=7;i++){ cin>>b; a=a+b; } cout<<a/7<<endl; return 0; }