您需要 登录 才可以下载或查看,没有账号?立即注册
#include<stdio.h> #define N 3 #define M 3 int select (int a[N][M],int *n) { int i,j,row = 1,colum = 1; for(i = 0;i < N;i++) { for (j = 0;j < M;j++) { if(a[i][j] > a[row][colum]) { row = i; colum = j ; } } } *n = row ; return a[row][colum]; } int main() { int a[N][M] = {9,11,23,6,1,15,9,17,20},max,n; max = select(a,&n); printf("max = %d,line = %d\n",max,n); return 0; }
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)
GMT+8, 2025-1-15 22:48
Powered by Discuz! X3.4
© 2001-2023 Discuz! Team.