描述
找出 n 个数中的最大值。
输入
输入第一行 1 个整数 n, 表示接下来有 n 个数。输入第二行 n 个整数。
输出
n 个数中的最大值。
样例
输入
5 3 11 6 13 2
输出
13
语言 C++
代码
#include<bits/stdc++.h> using namespace std; int n,t,mx; int main(){ cin>>n; for(int i=1;i<=n;i++){ cin>>t; mx=max(mx,t); } cout<<mx; return 0; }