下列程序执行后,变量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 IfA.100B.20C.1000D.0
下列程序执行后,变量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
D.0
相关考题:
下列程序执行后,变量a的值为______。 dim a, b, c, d as single a=100 b=20 c=1000 if b>a then d=a: a=b: b=d end if if c>a then d=a: a=c: c: d end if if c>b then d=b: b=c: c=d end ifA. 0B.1000C.20D.100
下列程序执行后,变量a的值为( )。 Dim a,b,c,d as single a=100 b=20 c=1000 if b>a Then d=a:a=b:b=d End if if c>a Then d=a:a=c:c=d End if if c>b Then d=b:b=c:c=d End ifA.0B.1000C.20D.100
下列程序执行后,变量x的值为( )。 Dima,b,c,d As Single Dim x As Single a=100 b=20 c=1000 Ifb>a Then d=a:a=b:b=d End If Ifb>c Then X=b Elseif a>c Then x=c Else x=a End IfA.100B.20C.1000D.0
int x=1; while(x<5); x++;执行上面程序段,下面说法正确的是()。A.程序段执行结束后,x 值为6。B.程序段执行结束后,x 值为5。C.程序执行出现死循环。D.程序段执行结束后,x 值为2。
int x=1; while(x<5); x++; 执行上面程序段,下面说法正确的是()。A.程序执行出现死循环。B.程序段执行结束后,x 值为6。C.程序段执行结束后,x 值为5。D.程序段执行结束后,x 值为2。