清华大学机试 最大最小值 Easy

僤鯓⒐⒋嵵緔 提交于 2020-03-02 13:20:12

基本思想:

无;

 

关键点:

无;

 

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<cmath>
#include<set>
#include<map>
using namespace std;

const int maxn = 10010;

int ma[maxn];

int main() {
	int n;
	while (cin>>n){
		for (int i = 0; i < n; i++) {
			cin >> ma[i];
		}
		sort(ma, ma + n);
		cout << ma[n - 1] << " " << ma[0] << endl;
	}
	return 0;
}

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!