在窗体上画一个命令按钮,然后编写如下事件过程:Private Sub Command1_Click()Dim a, b As Integer
A: = InputBox("Enter the First integer")
B: = InputBox("Enter the Second integer")Print b + aEnd Sub程序运行后,单击命令按钮,先后在两个输入对话框中分别输入456和123,则输出结果是( )。A. 579 B. 123
C: 456
D: 123456
A: = InputBox("Enter the First integer")
B: = InputBox("Enter the Second integer")Print b + aEnd Sub程序运行后,单击命令按钮,先后在两个输入对话框中分别输入456和123,则输出结果是( )。A. 579 B. 123
C: 456
D: 123456
举一反三
- 在窗体上添加一个命令按钮,编写事件过程: Private Sub Command1_Click() Dim a As Integer,b As Integer a=InputBox("Enter the First integer") b=InputBox("Enter the Second integer") Print b+a End Sub 程序运行后,单击命令按钮,先后在两个输入对话框中分别345和678,则输出结果是( )。
- 中国大学MOOC: 在窗体上添加一个命令按钮Command1和一个文本框Text1,把文本框的Text属性设置为空白,然后编写如下事件过程: Private Sub Command1_Click() a = InputBox(Enter an Integer) b = InputBox(Enter an Integer) Text1.Text = b + aEnd Sub程序运行后,单击命令按钮,如果在输入对话框中分别输入8和10,则文本框中显示的内容是( )。
- 在窗体上画一个命令按钮,然后编写如下程序: Dim x As Integer Sub inc(a As Integer) x=x+a End Sub Private Sub Command1_CliCk() inc2 inc3 inc4 Msgbox x; End Sub 程序执行后,单击Command1命令按钮,消息框显示结果是 【14】
- 中国大学MOOC: 在窗体上添加一个命令按钮Command1,然后编写如下事件过程:Private Sub Command1_Click() Dim a As Integer, s As Integer a = 8 s = 1 Do s = s + a a = a - 1 Loop While a <= 0 Print s; aEnd Sub程序运行后,单击命令按钮,则窗体上显示的内容是( )。
- 在窗体上画一个命令按钮Command1,编写事件代码如下: Public x As Integer Private Sub Command1_Click() x=3 Call f1 Call f2 MsgBox x End Sub Private Sub f1() x=x*x End Sub Private Sub f2() Dim x As Integer x=x+4 End Sub 运行窗体后,单击命令按钮,则消息框的输出结果为______。