博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
求矩阵的局部极大值(15)
阅读量:6841 次
发布时间:2019-06-26

本文共 474 字,大约阅读时间需要 1 分钟。

#include
#include
int main(){ int m,n,i,j; int count; int **a; while(~scanf("%d%d",&m,&n)) { if(m<3||n<3||m>20||n>20) continue; count=0; a=(int **)malloc(m*sizeof(int *)); for(i=0;i
a[i-1][j]&&a[i][j]>a[i+1][j]&&a[i][j]>a[i][j-1]&&a[i][j]>a[i][j+1]) { count++; printf("%d %d %d\n",a[i][j],i+1,j+1); } if(count==0) printf("None %d %d\n",m,n); } return 0;}

转载于:https://www.cnblogs.com/abc-24990/p/4257485.html

你可能感兴趣的文章