码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-03-02 13:11:56      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:string   std   stream   mat   return   out   turn   algo   end   

基本思想:

无;

 

关键点:

无;

 

#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;
}

  

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

标签:string   std   stream   mat   return   out   turn   algo   end   

原文地址:https://www.cnblogs.com/songlinxuan/p/12394783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!