【简答题】以下程序中,select函数的功能是:在N行M列的二维数组中,选出一个最大值作为函数值返回,并通过形参传回此最大值所在的行下标,请填空。#define N 3#define M 3select(int a[N][M],int *n){int i,j,row=0,colum=0for(i=0i a[row][colum]){row=icolum=j}*n=;return();}
【简答题】以下程序中的select()函数功能是:在N行M列的二维数组中选出一个最大值作为函数值返回,并通过形参传回此最大值的行下标。请填空完成此程序。 include<iostream> define N 3 define M 3 using namespace std; int select(int a[N][M],int *n) { int i,j,row=0,colum=0; for(i=0;i<N...