Problem : 写一个函数找出一个整数数组中,第二大的数 Problem : 写一个函数找出一个整数数组中,第二大的数
Time Limit: 100000 Sec Memory Limit: 128 MB
Submit: 238 Solved: 153
[Submit] [Status] [Web Board] [Creator:]Description
写一个函数find_sec_max(nArray, n)找出一个整数数组中,第二大的数。主函数中输入数组元素个数以及数组元素,调用函数find_sec_max(nArray, n)输出第二大的数。
Input
10
23 1 45 1000 990 7 89 34 45 70
Output
990
Sample Input
10 23 1 45 1000 990 7 89 34 45 70
Sample Output
990
[Submit][Status]