二维数组的鞍点问题(c++)

/*
用C++编写程序:找出二维数组鞍点,即该位置上的元素行最大,列最小,cout输出,当然可能没有鞍点。
数组100*100
int型
eg:
1 2 3 4
      5
随机数 6
      7
 4就是鞍点 
用随机数(0-99)填充
*/


#include
#include
#include 
using namespace std;
int main(void) 
{
const int N=100; 
int arr[N][N];
int i,j,maxj,max,flag;
srand(time(NULL));
cout<<"输出随机数:"< for(i=0;i {
for(j=1;j<=N;j++)
{
arr[i][j]=rand()%100;
cout<
}
}
max=arr[0][0];
maxj=0;
for(j=0;j {
if(max {
max=arr[0][j];
maxj=j;
}
}
flag=1;
for(i=0;i {
if(arr[i][maxj] {
flag=0;
break;
}
}
if(flag)
{
cout<<"鞍点为"< }
else
cout<<"没有鞍点!"< return 0;

你可能感兴趣的:(c++)