#5209. n个非负数取最大值
n个非负数取最大值
Description
输入个非负整数,求其中的最大值。
Format
Input
第一行 输入一个正整数 代表读入个数字
第二行 输入个数字
Output
输出最大的那个
Samples
3
1 2 3
3
Limitation
1s, 1024KiB for each test case.
输入n个非负整数,求其中的最大值。
第一行 输入一个正整数n 代表读入n个数字
第二行 输入n个数字
输出最大的那个
3
1 2 3
3
1s, 1024KiB for each test case.