Problem1378--数组平均数

1378: 数组平均数

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

Description

从键盘输入16个整数存入二维数组中,求出每一行的平均数。

Input

输入有四行,每行四个整型数。

Output

输出有四行,每行一个数,即该行的平均数。

Sample Input Copy

1 1 1 1
0 0 0 0
0 1 0 1
1 0 1 0

Sample Output Copy

1
0
0.5
0.5

Source/Category

admin