Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
980 李恩龙 13求7个数的平均数 C++ Accepted 0 MS 264 KB 170 2023-06-10 15:28:32

Tests(10/10):


Code:

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