用c++求一个二维矩阵的最大值和最小值

2024年11月28日 15:40
有1个网友回答
网友(1):

#include
using namespace std;
const int m=3;
const int n=3;
int main()
{

int max=0,min=1000000;
int s[m][n];

cout<<"input the data:"< for(int i=0;i for(int j=0;j cin>>s[i][j];

for( i=0;i for(int j=0;j cout< if(s[i][j] if(s[i][j]>max) max=s[i][j];
}
cout< }
cout<<"the maximum value is:"<
return 0;

}