Toggle navigation
编绘童年
F.A.Qs
ProblemSet
Source/Category
Status
Ranklist
Contest
Login
Problem1379--递归-求最大值
1379: 递归-求最大值
Time Limit:
1
Sec
Memory Limit:
128 MB
Submit:
458
Solved:
315
[
Status
] [
Submit
] [Creator:
]
Description
输入n个互不相同的整数,求出最大值。
要求使用
递归函数
完成。
例如:
函数f(5)可以算出前5个数的最大值;
函数f(4)可以算出前4个数的最大值;
那么:
f(5)的值是 前4个数的最大值 与 第5个数 比较后的较大值,
即:f(5)的值是 f(4) 与 a[5] 比较后的较大值。
Input
输入n与n个不同的整数 (1<=n<=100),每个整数大小均不超过1000。
Output
输出这n个数的最大值。
Sample Input
Copy
5 88 92 98 99 85
Sample Output
Copy
99
Source/Category
提高C