填空题

以下程序运行后的输出结果是
#include <stdio, h>
main( )
int a=3,b=4,c=5,t=99;
if(b<a && a<c) t=a;a=c;c=t;
if(a<e && b<c) t=b;b=a;a=t;
printf( "%d %d %d \\n" ,a,b,e);

【参考答案】

4599