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

codevs1201 最小数和最大数

时间:2017-06-22 13:55:33      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:ret   pre   最小   namespace   tty   最小数   int   ++   turn   

#include <cstdio>
#include <algorithm>
using namespace std;
int main(){
	int n,a[105],i,mx=0x7fffffff,mn=0x80000000;
	scanf("%d",&n);
	for(i=0;i<n;i++)scanf("%d",&a[i]);
	for(i=0;i<n;i++){
		mx=min(mx,a[i]);
		mn=max(mn,a[i]);
	}
	printf("%d %d\n",mx,mn);
	return 0;
}

codevs1201 最小数和最大数

标签:ret   pre   最小   namespace   tty   最小数   int   ++   turn   

原文地址:http://www.cnblogs.com/codetogether/p/7064495.html

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