我想知道这段代码为什么输出不对呀(求解)
#include<stdio.h>int main()
{
int a=60,b=100,c=80,j,i;
int halou[1][1],t;
for(i=0;i<3;i++)
{
for(j=0;j<3;j++);
scanf("%d",&halou[i][j]);
if(halou[i][j]<b && halou[i][j]>a)
{
t=halou[i][j];
halou[i][j]=c;
printf("%d\n",halou[i][j]);
}
else printf("%d\n",halou[i][j]);
}
return 0;
}