Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
139194 王润中 04计算平均分 C++ Accepted 0 MS 276 KB 174 2025-12-02 19:21:51

Tests(10/10):


Code:

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