(005)在二维数组中寻找出最大值

#include <stdio.h>
#define N 5
#define M 5
/*
auther:新生代小码农
date:2021-09-16
Question:在二维数组中寻找出最大值 

*/
int max(int array1[][M]){//x需要注意,可以没有行导师毕业要有列 
	int i,j,max,temp;
	//假设array[0][0]为最大值
	max=array1[0][0];
	for(i=0;i<N;i++){
		for(j=0;j<M;j++){
			if(array1[i][j]>max){//如果存在一个数比mzx还要大的话就发生交换,使得max中永远保持最大值
			 temp=array1[i][j];
			 array1[i][j]=max;
			 max=temp;
			}
		}
	} 
	printf("%d",max);
}
int main(){
	
	int array[N][M];//5*5
	int i,j;
	printf("please input 5*5 group number:");
	for(i=0;i<N;i++){
		for(j=0;j<M;j++){
			scanf("%d",&array[i][j]);
		}
	}
	printf("\n");
	max(array);
	return 0;
} 

运行结果如下:

please input 5*5 group number:1 2 3 4 5
        6 7 8 9 10
        11 12 13 14 15
        16 17 18 19 20
        21 22 23 24 25

25
--------------------------------
Process exited with return value 0
Press any key to continue . . .

上一篇:005.HTTP协议中的Accept与Content-Type的区别


下一篇:团体程序设计天梯赛-练习集 L1-005 考试座位号 (15 分)