如下VB程序段 Do x=Val(InputBox(“x=“)) If (x Mod 3)+x\3=5Then Print“x=“; x Loop Until x=0 運(yùn)行后,當(dāng)?shù)谝淮屋斎?、第二次輸入11、第三次輸入0后,在窗體上顯示的結(jié)果是( ?。?/h1>
3.有程序代碼如下,輸入某數(shù)據(jù)后,輸出結(jié)果為“B”。那么輸入的數(shù)據(jù)可能是( ) 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