Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94778 陈昇杰 13求7个数的平均数 C++ Accepted 1 MS 272 KB 154 2024-10-26 13:18:43

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { int a,s,d,f,g,h,j,k=0; cin>>a>>s>>d>>f>>g>>h>>j; k=a+s+d+f+g+h+j; cout<<k/7; return 0; }