Problem1003--§1 4 求平均年龄

1003: §1 4 求平均年龄

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

班上有学生若干名,给出每名学生的年龄(整数),求班上所有学生的平均年龄,保留到小数点后两位。

Input

第一行有一个整数 $n$($1≤ n ≤ 100$),表示学生的人数。
其后 $n$ 行每行有一个整数,表示每个学生的年龄,取值为 $15$ 到 $25$。

Output

输出一行,该行包含一个浮点数,为要求的平均年龄,保留到小数点后两位。

Sample 1 Input

2
18
17

Sample 1 Output

17.50

Sample 2 Input

3
15
20
25

Sample 2 Output

20.00

Sample 3 Input

4
15
18
20
22

Sample 3 Output

18.75

Source/Category