清华大学机试 最大最小值 Easy
Posted songlinxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清华大学机试 最大最小值 Easy相关的知识,希望对你有一定的参考价值。
基本思想:
无;
关键点:
无;
#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的主要内容,如果未能解决你的问题,请参考以下文章