下列程序执行时,从键盘上依次输入123和234,则程序的输出结果是【 】。Dim a,b As Integera=InputBox("请输入第一个整数")b=InputBox("请输入第二整数")Print a+b
下列程序执行时,从键盘上依次输入123和234,则程序的输出结果是【 】。
Dim a,b As Integer
a=InputBox("请输入第一个整数")
b=InputBox("请输入第二整数")
Print a+b
相关考题:
在窗体中添加一个命令按钮,然后编写如下程序:Private Sub Command1_Click()Dim a As Integer, b As Integera=InputBox(“Enter the Firstinteger”)b=InputBox(“Enter the Secondinteger”)Print b+aEnd Sub程序运行后,单击命令按钮,先后在两个输入框中分别输入123和123,则输出结果是( )。A.246B.123C.456D.123123
若执行下列程序时从键盘上输入2,则输出结果是()。 inclUde main() {int a; scanf("%d", 若执行下列程序时从键盘上输入2,则输出结果是( )。#inclUde<stdio.h>main(){int a;scanf("%d",A);if(a++<3)printf("%d\n",A);else printf("%d\n",a--);}A.1B.3C.2D.4
若执行下列的程序时,从键盘上输入1和2,则输出结果是( )。 include main(){ int a,b,s;s 若执行下列的程序时,从键盘上输入1和2,则输出结果是( )。 #include<stdio.h> main() { int a,b,s; scanf("%d%d",a,b); s=a; if(a<b) s=b; s=s*s; printf("%d\n",s); }A.1B.4C.2D.9
下列程序: Private Sub Command1_Click() a=InputBox("请输入") b=InputBox("请输入") Print=a+b End Sub 运行时输入3和4,输出的结果是A.7B.34C.3+4D.出错
有以下程序: 若运行时输入:1 2 3回车,则输出结果是( )。 A.编译错误 2 0 0 0SXB 有以下程序:若运行时输入:1 2 3回车,则输出结果是( )。A.编译错误 2 0 0 0B.1 0 2 0 0 0C.1 2 2 0 3 0D.1 0
若执行下列的程序时,从键盘上输入1和2,则输出结果是()。 include main() { int a,b,s; 若执行下列的程序时,从键盘上输入1和2,则输出结果是( )。#include<stdio.h>main(){ int a,b,s;scanf("%d%d",a,B) ;S=a;if(a<B) s=b;s=s*s;printtf("%d\n",s);}A.1B.4C.2D.9
以下程序段运行时从键盘上输入字符“-”,则输出结果为 op$=InputBox("op=") If op$="+" Then a=a+2 If op$="-" Then a=a-2 Print aA.2B.-2C.0D.+2