1888: 找出比平均值大的数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:58
Solved:41
Description
定义一个数组arr,并赋值,输出数组中比所有元素平均值大的元素。
Input
第1行,输入n,表示数组长度。
第2行,输入n个数字,空格分隔。
Output
按题目要求输出,空格分隔。
Sample Input Copy
6
12 10 9 22 15 28
Sample Output Copy
22 28