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

求最大最小数

时间:2018-12-30 02:34:49      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:using   绝对值   describe   包括   include   names   最小数   clu   class   

```

/*题目描述

输入N个(N<=10000)数字,求出这N个数字中的最大值和最小值。每个数字的绝对值不大于1000000。

输入描述:

输入包括多组测试用例,每组测试用例由一个整数N开头,接下去一行给出N个整数。

输出描述:

输出包括两个整数,为给定N个数中的最大值与最小值。
*/

#include <iostream>
using namespace std;
int main() {
int N;
while(cin >> N) {
int max = -1000000, min = 1000000;
int a;
for (int i = 0; i < N; i++) {
cin >> a;
if (a > max) {
max = a;
}
if (a < min) {
min = a;
}
}
cout << max << " " << min << endl;
}
}

```

求最大最小数

标签:using   绝对值   describe   包括   include   names   最小数   clu   class   

原文地址:https://www.cnblogs.com/zhuobo/p/10198305.html

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