题目内容
下面程序的运行结果是:。#include main( ){ int i,j,row=0, colum=0,max;int a[3][4]={{1,2,3,4},{9,8,7,6},{-10,10,-5,2}};max=a[0][0];for (i=0; i<=2; i++)for(j=0; j<=3; j++)if (a[i][j]>max){max=a[i][j]; row=i; colum=j; }printf("max=%d,row=%d,colum=%d\n",max,row,colum);}
查看答案
搜索结果不匹配?点我反馈
更多问题