登录
注册
欢迎来到在线题库搜索
作业考试题库搜索平台
搜索答案
网站首页
会员联系qq:84302438 (仅限VIP会员,周一到周五12:00-18:00)
智能AI论文生成
当前位置:在线题库搜索>
[单选题]下列程序执行后,变量x的值为______。 Dim a, b, c, d As Single Dim x As Single a=100 b=20 c=1000 If b>a Then d=a: a=b: b=d End If If b>c Then x=b Elseif a>c then x=c Else x=a End If的答案是什么?
问题:
[单选题]下列程序执行后,变量x的值为______。 Dim a, b, c, d As Single Dim x As Single a=100 b=20 c=1000 If b>a Then d=a: a=b: b=d End If If b>c Then x=b Elseif a>c then x=c Else x=a End If
A、100
B、20
C、1000
参考答案: A
报错
相关题目:
对语句Dim a&, b%, c$,
设有:int a=1, b=2, c
设a = 6,则执行x = a mo
语句x=3==3,5执行结束后,变量
下面程序运行后,第3次单击窗体后,
相关内容
●
下面程序段执行后,输出的结果是______。Dim pi A Integerpi = 314159Print "pi"
●
已知有如下数组定义Dim a(-3 To 6, 5, 3 To 10) A Integer则执行语句Print LBound(a, 2); UBound(a, 2),输出的值为______。
●
有如下一个Sub过程: Sub mlt (ParamArray number()) n=1 For Each x In number n=n * x Next x Print n End Sub在一个事件过程中如下调用该Sub过程: Private Sub Coinmand1_Click() Dim a A Integer Dim b A Integer Dim c A Integer Dim d A Integer a=1 b=2 c=3 d=4 mlt a,b,c,d End Sub 则运行该程序,结果为______。
●
设a="a",b="b",c="c",d="d",执行语句x=IIf((a<B)Or(c>D),"A","B")后,x的值为______。
●
若整型变量a值为2、b的值为3,则下列程序段执行后整型变量c的值为______。 If a>5 then If b<4 Then c=a-b Ele c=b-a Ele If b>3 Then c=a*b Ele c=a mod b End If
●
下列程序执行后,变量x的值为______。 Dim a, b, c, d A Single Dim x A Single a=100 b=20 c=1000 If b>a Then d=a: a=b: b=d End If If b>c Then x=b Eleif a>c then x=c Ele x=a End If
●
下列程序执行后,变量x的值为( )。 Dim a, b, c, d A Single Dim x A Single a=10 b=30 c=400 If b>a Then d=a:a=b:b=d End If If b>c Then x=b Ele If a>c Then x=c Ele x=a End If
●
若a的值为3时,下列程序段被执行后,c的值是______。 int c=l; if (a>0) if (a>3) c=2; ele c=3; ele c=4;
●
执行以下程序段 a$="Viual Baic Programming" b$="C++" c$=UCae(Left$(a$,7))& b$ & Right $(a$,12) 后,变量c$的值为______。
●
执行以下程序段后,变量c$的值为______ 。 a$=“Viual Baic Programing” b$=“Quick” c$= b$ & UCae (Mid$(a$,7,6))&Right $,(a $,11)
●
执行以下程序段后,变量c$的值为 ______。 a$="Viual Baic Programming" b$="Quick" c$=b$ & UCae(Mid$(a$,7,6))& Right$(a$,12)
●
若有定义“int a=10,b=9,c=8;”,顺序执行下列语句后,变量b中的值是______。 c=(a-=(b-5));c=a% 11)+(b=3);