下列程序执行后,变量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


相关考题:

C#中执行下列语句后整型变量X和Y的值是多少?Intx=100;Inty=++x;A、x=100y=100B、x=101y=100C、x=100y=101D、x=101y=101

下列程序执行后,变量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

执行下列程序段后,变量X的值是( )。A.2B.4C.6D.8

设x为int型变量,则执行语句段x=10; x+=x-=x-x; 后,x的值为( )。A、30B、20C、40D、10

9、下列程序段执行后, 变量x的值是()。 for(x=2;x<10;x+=3)A.2B.9C.10D.11

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。