对窗体编写如下事件过程:
Option Base 1
Private Sub Form_KeyPress (KeyAScii AS Integer)
arr=Array(12,15,18,20,24)
m1=arr(1)
m2=1
If fKeyAscii=12 Then
For i=2 To 5
If arr(i)>m1 Then
m1=arr(i)
m2=i
End If
Next i
End If
Print m1
Print m2
End Sub
程序运行之后按回车键,输出结果为( )。
A. N=0 Do N=N+1 Loop Until N>=100 B. N=0 Do N=N+1 Loop While n<100 C. N=0 N=N+1 Do Loop Until N<100 D. N=0 Do While n<100 N=N+1 Loop