求二维数组的最大值,改错,错误在/**********found*****/后面

[复制链接]
查看11 | 回复1 | 2011-5-7 10:11:41 | 显示全部楼层 |阅读模式
#include
#include
int arrmax( int arr[3][3])
{ int i,j,max;

max=arr[0][0];
/************found************/

for ( i=0 ; i<=3; i++)

for ( j=0; j<3; j++)

if (max < arr[j])

{
        max = arr[j];

}

return (max);
}
voidmain()
{ int a[3][3]={4,4,34,7,3,12,5,6,5},i,j;
/************found************/

printf("The max is: %d\n",a[j]);
}

回复

使用道具 举报

千问 | 2011-5-7 10:11:41 | 显示全部楼层
第一个错误时i<=3改成i<3第二个错误在a【i】【j】改成arrmax(a)
回复

使用道具 举报

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

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行