Toggle navigation
编绘童年
F.A.Qs
ProblemSet
Source/Category
Status
Ranklist
Contest
Login
Problem1880--提高A期末-热热热
1880: 提高A期末-热热热
Time Limit:
1
Sec
Memory Limit:
128 MB
Submit:
119
Solved:
38
[
Status
] [
Submit
] [Creator:
]
Description
暑假要到了,已知接下来会n(7<=n<=10000)天连续高温,国老师想要知道接下来最热的那一周(连续的7天)平均气温会达到多少?
每天的气温均为一个精度1位小数的值,答案也要求保留1位小数。
double a; printf("%.1lf",a);
Input
第一行为正整数n(7<=n<=10000)
第二行为连续n个小数,用空格隔开,表示每天的气温 ,气温的范围确保在0~100度之间
Output
最热的一周的平均气温
Sample Input
Copy
10 30.3 30.2 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.2
Sample Output
Copy
30.3
HINT
样例输出为第3天到第9天的平均值
Source/Category
春季测验