Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138039 刘杨国屹 13求7个数的平均数 C++ Wrong Answer 1 MS 272 KB 175 2025-11-23 12:09:28

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ long long a,b,c,d,e,f,g,s=0; cin>>a>>b>>c>>d>>e>>f>>g; s=a+b+c+d+e+f+g/7; cout<<s; return 0; }


Run Info:

------Input------
64 70 75 65 23 100 7
------Answer-----
57
------Your output-----
398