以下程序运行后的输出结果是【 】。 #include <stdio, h> main( ) { int a=3,b=4,c=5,t=99; if(b<a && a<c) t=a;a=c;c

admin2009-01-15  8

问题 以下程序运行后的输出结果是【  】。
      #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

解析 要注意每条证语句后面是三条语句,而不是一条语句。执行第一条if语句时,条件表达式不成立,执行a=c;c=t;,此时a=5,c=99;执行第二条if语句时,条件表达式成立,执行t=b;b=a;a=t;交换a,b的值,输出结果为4,5和99。
转载请注明原文地址:https://kaotiyun.com/show/whXp777K
0

最新回复(0)