运行下面程序后,正确的输出结果是 ______。Private Sub Command1_ Click() x = 6 if x >6 then Print "x>6": Else if x <8 then

admin2010-09-11  28

问题 运行下面程序后,正确的输出结果是 ______。Private Sub Command1_ Click()    x = 6    if x >6 then        Print "x>6":    Else        if x <8 then            Print "x<8";        Else            if x = 6 then                Print "x=6":            End if        End if    End ifEnd Sub

选项 A、x<8  x=6
B、x<8
C、x=6
D、x<8或x=6

答案B

解析 本题难点是如何确定if结构语句的判决条件,不要将其与输出结果混淆起来。打印分隔符为“;”时,字符串之间没有空格。
转载请注明原文地址:https://kaotiyun.com/show/1wmp777K
0

最新回复(0)