Sub test16( ?。?br />X=9 For i=2 To 51 Step 3 If (X/2)>=i Then X=X+1 Next i For i=2 To-2 Step-3 If (X/2)>=i Then X=X+1 Next i MsgBox (X+i) End Sub 該程序的運行結果是( )
3.有程序代碼如下,輸入某數據后,輸出結果為“B”。那么輸入的數據可能是( ?。?br />Dim score As Integer score=Val(InputBox(“score:“)) If score>89 Then Print“A“ Else If score>59 Then Print“B“ Else Print“C“ End If End If