编程语言
首页 > 编程语言> > 1.9编程基础之顺序查找 05 最大值和最小值的差

1.9编程基础之顺序查找 05 最大值和最小值的差

作者:互联网

http://noi.openjudge.cn/ch0109/05/

/*
1.9编程基础之顺序查找 05 最大值和最小值的差
http://noi.openjudge.cn/ch0109/05/
*/
#include <bits/stdc++.h>
using namespace std;

int a[10000+10];

int main()
{
	int m,max=-10001,min=10001;
	
	cin>>m;
	
	for(int i=1;i<=m;i++)
	{
		cin>>a[i];
		if(a[i]>max)  max=a[i];
		if(a[i]<min)  min=a[i];
	}
	
	cout<<max-min<<endl;
	
	return 0;
}

 

 


 

 

 

 

标签:cn,05,int,max,1.9,最小值,10001
来源: https://blog.csdn.net/dllglvzhenfeng/article/details/122504320