题目描述 Description
输入n个数,n<=100,找到其中最小的数和最大的数
输入描述 Input Description
第一行一个整数n
接下来一行n个整数,每个整数不超过231 -1
输出描述 Output Description
最小和最大的数
样例输入 Sample Input
4
1 2 3 4
样例输出 Sample Output
1 4
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int n;
int x,big,small;
cin>>n;
cin>>x;big=x;small=x;
for(int i=0;i<n-1;i++)
{
cin>>x;
big=max(big,x);
small=min(small,x);
}
cout<<small<<' '<<big;
return 0;
}