• 2022-10-30
    运行下面程序后,正确的输出结果是 ______。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