填空题 若有以下程序:
main()
{int a=4,b=5,c=3,t=0;
if(a>b)t=a;a=b;b=t;
if(a<c)t=a;a=c;c=t;
printf(" %d %d %d/n",a,b,c);
}
执行后输出的结果为 1
【正确答案】
【答案解析】3 0 0