鱼C论坛

 找回密码
 立即注册
查看: 1890|回复: 5

[已解决]我这个数组运行起来结果是错的

[复制链接]
发表于 2020-2-16 21:38:19 From FishC Mobile | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
int main()
{
        int i,j,row=0,column=0,max;
        int a[3][4]={{5,6,8,9},{10,12,1,2},{3,4,7,-11}};
        max=a[0][0];
        for(i=0;i<3;i++)
        for(j=0;j<4;j++)
        if(a[i][j]>max)
        {
        max=a[i][j];
        row=i;
        column=j;
        }
printf(" max=%d\n row=%d\n column=%d\n",max,i,j);
return 0;
}
最佳答案
2020-2-17 07:20:43
这样应该对了。
#include<stdio.h>
int main()
{
        int i,j,row=0,column=0,max1,max2;
        int a[3][4]={{5,6,8,9},{10,12,1,2},{3,4,7,-11}};
        max1=a[row][column];
        for(i=0;i<3;i++)
        for(j=0;j<4;j++)
        if(a[i][j]>max1)
        {
        max1=a[i][j];
              row=i;
              column=j;
        }
       
                 
printf(" max=%d\n row=%d\n column=%d\n",max1,row,column);
return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-16 21:46:33 | 显示全部楼层
你怎么知道是错的?
请说明你期望的运行结果和现在的运行结果
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-16 22:02:38 From FishC Mobile | 显示全部楼层
人造人 发表于 2020-2-16 21:46
你怎么知道是错的?
请说明你期望的运行结果和现在的运行结果

我需要求出那个几行几列为最大值
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-16 22:29:38 | 显示全部楼层
QQ截图20200216222917.png
你运行出来是啥结果呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-17 07:20:43 | 显示全部楼层    本楼为最佳答案   
这样应该对了。
#include<stdio.h>
int main()
{
        int i,j,row=0,column=0,max1,max2;
        int a[3][4]={{5,6,8,9},{10,12,1,2},{3,4,7,-11}};
        max1=a[row][column];
        for(i=0;i<3;i++)
        for(j=0;j<4;j++)
        if(a[i][j]>max1)
        {
        max1=a[i][j];
              row=i;
              column=j;
        }
       
                 
printf(" max=%d\n row=%d\n column=%d\n",max1,row,column);
return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-17 20:56:25 | 显示全部楼层
#include<stdio.h>
int main()
{
        int i,j,row=0,column=0,max;
        int a[3][4]={{5,6,8,9},{10,12,1,2},{3,4,7,-11}};
        max=a[0][0];
        for(i=0;i<3;i++)
        for(j=0;j<4;j++)
        if(a[i][j]>max)
        {
        max=a[i][j];
        row=i;
        column=j;
        }
printf(" max=%d\n row=%d\n column=%d\n",max,row+1,column+1);
return 0;
}
对的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 02:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表