算法笔记练习 6.9 algorithm 问题 A: 求最大最小数

算法笔记练习 题解合集

本题链接

题目

题目描述
先输入N,表示数的个数,然后输入N个数,求这N个数的最大值和最小值。N<=10000,输入的数的绝对值不大于10^6

样例输入

4  
2 0 1 2

样例输出

2 0

思路

练习maxmin函数。

代码

#include 
#include 
using namespace std;
int main() {
	int n, input;
	while (cin >> n) {
		int MAX = -2147483648, MIN = 2147483647;
		while (n--) {
			cin >> input;
			MAX = max(MAX, input);
			MIN = min(MIN, input);
		}
		cout << MAX << " " << MIN << endl;
	} 
	return 0;
} 

你可能感兴趣的:(算法笔记,算法,c++,c语言)