给位帮帮忙,编译没提示错误,但输不出结果
void main(){int a,b,c,d;
for(a=0;a<=9;a++)
{for(b=0;b<=9;b++)
{for(c=0;c<=9;c++)
d=a*1000+a*100+b*10+c;
if((b+c==6)&&(d%2==0))
printf("the car number is %d",d);
else continue;
}
}
getch();
}
各位帮我看看这段代码有什么问题,为什么输不出来结果