填空题

若有以下程序:
main()
int a=4,b=3,c=5,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);

执行后的输出结果是

【参考答案】

503