[填空题] 在窗体上有一个命令按钮和一个文本框。编写如下事件过程: Private Sub Command1_Click() a=InputBox("请输入一个整数") Text1.Text=a If a > 0 Then If a Mod 3 = 0 Then MsgBox "True" Else MsgBox "error" End If End If End Sub程序运行后,单击命令按钮,在输入对话框里输入12,则弹出的提示内容是______。
正确答案:True

[填空题] 在窗体上有一个命令按钮和一个文本框。编写如下事件过程: Private Sub Command1_Click() a=InputBox("请输入一个整数") Text1.Text=a If a > 0 Then If a Mod 3 = 0 Then MsgBox "True" Else MsgBox "error" End If End If End Sub程序运行后,单击命令按钮,在输入对话框里输入12,则弹出的提示内容是______。
正确答案:True
上一篇 [单项选择题] 下列哪个关键字通常用来对对象进行加锁,该标记使得对对象的访问是排他的
下一篇 [单项选择题] 下列程序的执行结果是( )。 Function P(N As Integer)For i=1 To N Sum=Sum+iNext iP=Sum End Function P