5个数求最值

时间限制:1000 ms  |  内存限制:65535 KB
难度:1
 
描述
设计一个从5个整数中取最小数和最大数的程序
 
输入
输入只有一组测试数据,为五个不大于1万的正整数
输出
输出两个数,第一个为这五个数中的最小值,第二个为这五个数中的最大值,两个数字以空格格开。
样例输入
1 2 3 4 5
样例输出
1 5

分析:直接用algorithm中的*min_element()和*max_element()。或者先排序,取首尾。
 #include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main(){
vector<int> v();
for(int i = ; i < ; i++)
cin >> v[i];
//sort(v.begin(), v.end());
cout << *min_element(v.begin(), v.end()) << " ";
cout << *max_element(v.begin(), v.end()) << endl;
//cout << v[0] << " " << v[4] << endl;
return ;
}
05-22 20:01
查看更多