3X4矩阵求出最大元素的值以及所在的行列号。运行结果莫名不对
#include <stdio.h>void main()
{
int max,i,j,row,colum,a={{1,2,3,4},{9,8,7,6},{-10,10,-5,2}};
//printf("Input twelve number\n");
//scanf("%d",&a);
max = a;
for(i = 0;i < 3;i ++)
{
for(j = 0;j < 4;j ++);
{
if(a > max)
{
max = a;
row = i;
colum = j;
}
}
}
printf("max=%d\n",max);
printf("row=%d\n",row);
printf("colum=%d\n",colum);
}
你第二个for循环语句结尾多加了个分号…… 爱学习的懒懒君 发表于 2018-11-18 13:33
你第二个for循环语句结尾多加了个分号……
哦哦哦哦哦,十分感谢
页:
[1]