0
聪雨墨
高级守护
高级守护
1755 平均年龄经验值:0
题目描述 Description
一次长跑比赛活动,大赛规定参赛者年龄在18-60岁范围内。现在给出n名参赛者的年龄(整数),求他们的平均年龄,保留到小数点后一位。
输入描述 Input Description
若干行
第一行有一个整数n(1≤n≤100),表示参赛者的人数
其后n行每行有一个整数,表示每个参赛者的年龄。
输出描述 Output Description
平均年龄,保留一位小数
样例输入 Sample Input
3 20 30 40
样例输出 Sample Output
30.0
WA ten(10):
- #include<bits/stdc++.h>
- using namespace std;
- int main(){
- double a,b,c,d;
- cin>>a>>b>>c>>d;
- printf("%.1f",(b+c+d)/a);
- return 0;
- }
样例都过了,那咋算?