Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75719 sh25_zhuwy 【基础题】平均数 C++ 无测评数据 0 MS 0 KB 168 2025-12-09 15:59:04

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main() { double a,b,c; cin>>a>>b>>c; double k=(a+b+c)/3; cout<<fixed<<setprecision(3)<<k; return 0; }