有如下事件程序,运行该程序后输出结果是 Private Sub Command33_Click() Dim x As Integer, y As Integer x=1:y=0 Do Until y

admin2013-10-28  19

问题 有如下事件程序,运行该程序后输出结果是
   Private Sub Command33_Click()
        Dim x As Integer,  y As Integer
        x=1:y=0
        Do Until y<=25
           y=y+x*X
           x=x+1
        Loop
        MsgBox"x="&X&",y="&y
    End Sub

选项 A、x=1,y=0   
B、x=4,y=25
C、x=5,y=30   
D、输出其他结果

答案A

解析
转载请注明原文地址:https://jikaoti.com/ti/GWV0FFFM
0

最新回复(0)