Private Sub Command1_Click( )
Static b As Integer
b=b+1
E.nd Sub
窗体打开运行后,三次单击命令按钮后,变量 b 的值是 ( 11 ) 。
[试题]( 11 )在窗体中添加一个命令按钮,名称为 Command1 ,然后编写如下程序:Private Sub Command1_Click()D.im s , iF.or i=1 To 10s=s+iNext iMsgBox sE.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为 ( 11 ) 。
[试题]( 11 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下事件代码:Private Sub Command1_Click( )D.im x As Integer, y As Integerx=12 : y=32C.all p(x, y)MsgBox x*yE.nd SubPublic Sub p (n As Integer, By Val m As Integer)n=n Mod 10m=m Mod 10E.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为 ___
[单选题]( 30 )在窗体中添加一个命令按钮(名称为 Command1 ),然后编写如下代码:Private Sub Command1_Click( )a=0 : b=5 : c=6MsgBox a=b+cE.nd Sub窗体打开运行后,如果单击命令按钮,则消息框的输出结果为A. ) l1B. ) a=11C. ) 0D. ) False
[试题]在窗体中添加一个命令按钮,名称为Command1,然后编写如下程序:Private Sub Command1_Click()D.im s,iF.or i=1 To 10s=s+iNext iMsgBox sE.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为 。
[试题]在窗体中添加一个名称为Command1的命令按钮,然后编写如下程序:
[单选题]在窗体中添加一个命令按钮,名称为Command1,然后编写如下程序: Private Sub Command1_Click() Dim a As Integer, b As String, c As Integer a=1234: b=Str(a)c=Len(b)Print c End Sub 程序运行后,单击命令按钮,则在窗体上显示的内容是______。A.0B.5C.6D.7
[单选题]( 35 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下程序:Public x As IntegerPrivate Sub Command1_Click( )x = 10C.all s1C.all s2MsgBox xE.nd SubPrivate Sub s1( )x = x + 20E.nd SubPrivate Sub s2( )D.im x As Integerx = x + 20E.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为A. ) 10B.
[单选题]( 33 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下事件代码:Private Sub Command1_Click( )A.=75If A>60 Then I=1If A>70 Then I=2If A>80 Then I=3If A>90 Then I=4MsgBox IE.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果是A. ) 1B. ) 2C. ) 3D. ) 4
[单选题]( 34 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下事件代码:Private Sub Command1_Click( )s="ABBACDDCBA"F.or I=6 To 2 Step -2x=Mid(s,I,I)y=Left(s,I)z=Right(s,I)z=x & y & zNext IMsgBox zE.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果是A. ) AABAABB. ) ABBABAC. ) BABBAD. ) BB
[试题]( 12 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下程序:Private Sub s ( By Val p As lnteger )p=p*2E.nd SubPrivate Sub Command1_Click()D.im i As Integeri=3C.all s(i)If i>4 Then i=i^2MsgBox iE.nd Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为 ( 12 ) 。