下列程序执行的结果是______。 Private Sub Command1_Click() x=25 If x>0 Then y=1 If x>10 Then y=2 If x>20 Then y=3 If x>30

admin2009-02-13  45

问题 下列程序执行的结果是______。    Private Sub Command1_Click()    x=25    If x>0 Then y=1    If x>10 Then y=2    If x>20 Then y=3    If x>30 Then y=4    Print y    End Sub

选项 A、1
B、2
C、3
D、4

答案4

解析 由于x=25,所以要执行语句If x>20 Then y=3,故输出的最后结果是3。
转载请注明原文地址:https://jikaoti.com/ti/W5q0FFFM
0

最新回复(0)