Sub test16( ) 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 該程序的運行結(jié)果是( ?。?/h1>
3.有程序代碼如下,輸入某數(shù)據(jù)后,輸出結(jié)果為“B”。那么輸入的數(shù)據(jù)可能是( ?。?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