Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
323677 | 孙一铭 | 【C1-T】求平均分 | C++ | 通过 | 100 | 2 MS | 256 KB | 166 | 2025-05-21 15:50:36 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; double s=a+b+c; cout<<fixed<<setprecision(2)<<s/3<<endl; return 0; }