Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91733 | 潘梓骞 | 04计算平均分 | C++ | Wrong Answer | 1 MS | 264 KB | 159 | 2024-09-22 14:16:42 |
#include<bits/stdc++.h> using namespace std; int a,b,c; double p; int main(){ scanf("%d%d%d",&a,&b,&c); p=(a+b+c)/3; printf("%.2f",p); return 0; }
------Input------
401 355 919
------Answer-----
558.33
------Your output-----
558.00