填空题

若有以下程序
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 %dln",a,b,c);
执行后输出结果为______。

【参考答案】

5 0 3
热门 试题