练习专区

今天的一小步就是明天的一大步
Problem 1394 平均类......OOP
Accepted: 1   Total Submit: 1
Time Limit: 1000ms   Memory Limit: 30720KB
Description
声明一个类AverArray继承1391题中的Array类,在该类中定义一个函数,具有求输入的证书的平均值的功能。
Input
输入多组数据,每组数据两行,第一行n,表示数组长度,第二行n个整数,表示数组中的数。
Output
输出对应数组数据的平均值,结果保留两位小数。
Sample Input
10
1 2 3 4 5 6 7 8 9 0
3
23 56 41
Sample Output
4.50
40.00
Hint
提交     返回