在窗体上画一个名称为Command1的命令按钮,然后编写如下程序: Option Base 1 Private Sub Command1_Click( ) Dim c As In

admin2013-04-11  36

问题 在窗体上画一个名称为Command1的命令按钮,然后编写如下程序:               Option Base 1           Private Sub Command1_Click(  )               Dim c As Integer,d As Integer               d=0               c=6               x=Array(2,4,6,8,10,12)                 For i=1 TO 6                 If x(i)>c Then                 d=d+x(i)                 c=x(i)              Else                 d=d-c              End lf                Next i                Print d          End Sub         程序运行后,如果单击命令按钮,则在窗体上输出的内容为

选项 A、10
B、16
C、12
D、20

答案4

解析 本题考查的是循环和条件判断语句,Option Base l是强制使数组下标从1开始。
转载请注明原文地址:https://kaotiyun.com/show/iZhp777K
0

最新回复(0)