找最大值
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
对于一个给定的长度为 n 的数组,从中找出这 n 个数的最大值。
输入格式
输入第一行一个正整数n(1≤n≤100000),表示有多少个数。
接下来有一行 n 个整数,表示这个数组中的每个元素,均大于-100000。
输出格式
输出一个整数,表示这个数组中的最大值。
输出时每行末尾的多余空格,不影响答案正确性
5
1 5 3 2 4
5