以下程序段中,输出结果不能正确反映变量大小关系的是( )。

admin2022-10-24  26

问题 以下程序段中,输出结果不能正确反映变量大小关系的是(          )。

选项 A、if(x>y)printf("x>y");
 if(x<y)printf("x<y");
 else printf("x=y");
B、if(x>=y)
 if(x>y)printf("x>y");
 else printf("x=y");
 else printf("x<y"); if(x>y)printf("x>y");
 else printf("x=y");
 else printf("x<y");
C、if(x>y)printf("x>y");
 if(y>x)printf("x<y");
 if(x==y)printf("x=y");
D、if(x>y)printf("x>y");
 else if(y<x)printf("x<y");
 else printf("x=y");

答案A

解析 选项A中,若条件“x>y”为真,输出“x>y”;若条件“x<y”为真,输出“x<y”;若条件“x>=y”为真,输出“x=y”。选项A错误,其他选项都正确。故本题答案为A选项。
转载请注明原文地址:https://kaotiyun.com/show/bPkp777K
0

最新回复(0)