Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
6680 赖梓乐 04计算平均分 C++ Accepted 0 MS 264 KB 203 2025-03-08 20:49:23

Tests(10/10):


Code:

#include<cstdio> #include<iostream> using namespace std; int main(){ double a,c,b; scanf("%lf%lf%lf",&a,&b,&c); double h=(a+b+c)/3; printf("%.2lf\n",h); return 0; }