Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95563 | 王子毅 | 04计算平均分 | C++ | Wrong Answer | 0 MS | 276 KB | 178 | 2024-10-28 22:08:15 |
#include<bits/stdc++.h> using namespace std; int main() { int x,y,z; cin>>x>>y>>z; int average=(x+y+z)/3.0; cout<<average<<endl; return 0; }
------Input------
401 355 919
------Answer-----
558.33
------Your output-----
558