Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
48939 fuhaoze 求平均年龄 C++ 通过 0 MS 260 KB 210 2024-06-15 13:47:30

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int n,t; int i=1; double s; s=0; cin>>n; while(i<=n) { cin>>t; s+=t; i++; } printf("%.2lf",s/n); return 0; }


测评信息: