在窗体上画一个命令按钮,然后编写如下时间过程( )。 Print Sub Command l—Click() a=InputBox(“Enter the First interger”1 b=InputBox(“Enter the Second i

admin2020-07-22  47

问题 在窗体上画一个命令按钮,然后编写如下时间过程(     )。
Print Sub Command l—Click()
a=InputBox(“Enter the First interger”1
b=InputBox(“Enter the Second interger”)
Print b+a
End Sub
程序运行后,单击命令按钮,先后在两个输入对话框中分别输入456和123,则输出结果是

选项 A、579
B、123
C、456
D、123456

答案D

解析 Inputox函数返回的是字符串格式的用户输入的数据,因此本题中,最后变a和变量b中存储的是字符串‘456’和‘123’,因此表达式b+a。就是将这两个字符串连接起来,称为字符串‘123456’。
转载请注明原文地址:https://kaotiyun.com/show/23Hp777K
0

最新回复(0)