Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
70069 sh25_wangtaojie 三个数的平均数 C++ 无测评数据 0 MS 0 KB 263 2025-10-17 14:27:15

Tests(0/0):


#include <iostream> #include <iomanip> using namespace std; int main() { double a, b, c; cin >> a >> b >> c; double average = (a + b + c) / 3.0; cout << fixed << setprecision(2); cout << average << endl; return 0; }