Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1325 | 张宸瑜 | 04计算平均分 | C++ | Wrong Answer | 0 MS | 264 KB | 195 | 2023-08-24 16:04:39 |
# include<iostream> # include<cstdio> using namespace std; int main(){ int a,b,c; double d; scanf("%d%d%d",&a,&b,&c); d=(a+b+c)/3; printf("%.2lf",d); return 0; }
------Input------
890 467 585
------Answer-----
647.33
------Your output-----
647.00