填空题
某个窗体己编写下列事件过程。打开窗体运行后,单击窗体,消息框的输出结果为 ______。
Pfivate Sub Form_Click()
a=1
i=1
Do Until i>10
a=a+2
i=i+3
Loop
MsgBox a
End Sub
【参考答案】
I
热门
试题
填空题
有如下程序:Option Base 1Private Sub Form_Click() Dim arr,sumSum=0arr=Array(1,3,5,7,9,11,13,15,17,19) For i=1 To 10If arr(i) 3=arr(i) 3 ThenSum=Sum+arr(i) End IfNext iMsgBox SumEnd Sub程序运行后,单击窗体,消息框的输出结果为______。