下列程序执行后,变量X的值为( )。 Dim a,b,C,d As Single Dim X As Single f1=10 b=30 c=400 If bfl Then d=fl:fl=b:b=d End If If bC Then X=b Else If flc Then X=c Else X=a End IfA.10B.30C.400D.430

下列程序执行后,变量X的值为( )。 Dim a,b,C,d As Single Dim X As Single f1=10 b=30 c=400 If b>fl Then d=fl:fl=b:b=d End If If b>C Then X=b Else If fl>c Then X=c Else X=a End If

A.10

B.30

C.400

D.430


相关考题:

(23)下列程序执行后,变量x的值为 。 Dim a,b,c,d As Single Dim x As Single a=10 b=30 c=400 If ba Then d=a:a=b:b=d End If If bc Then x=b Elself ac Then x=c Else x=c End IfA.10 B.30 C.400 D.430

用Dim声明的局部变量是动态动态变量,其值在过程执行完后仍保留,而用Stalic声明的局部变量是静态变量,其值在程序执行完后会消失。()

设X为int型变量,则执行以下语句后,x的值为( )。 x=10:x=x-=x——x:A.10B.20C.40D.30

下列程序执行后,变量X的值为( )。Dim fl,b,C,d As SingleDim X As Singlef1=10b=30c=400If bfl Thend=fl:fl=b:b=dEnd IfIf bC ThenX=bElse If flc ThenX=cElseX=aEnd IfA.10B.30C.400D.430

下列程序执行后,变量x的值为( )。 Dim a,b,c,d As Single Dim x As 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 Else If a>c Then x=c Else x=a End IfA.10B.30C.400D.430

下列程序执行后,变量x的值为( )。Dim a,b,c,d As SingleDim x As Singlea=10b=30c=400If ba Thend=a:a=b:b=dEnd IfIf bc Thenx=bElse If ac Thenx=cElsex=aEnd IfA.10B.30C.400D.430

下列程序执行后,变量x的值为( )。 Dim a, b, c, d As Single Dim x As 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 Else If a>c Then x=c Else x=a End IfA.10B.30C.400D.430

变量x,y都是single类型,它们的值分别为10.7和20.3,变量t是整型,执行下面语句后,x,y的值变为()。t=x:x=y:y=tA.10.7,20.3B.20.3,10.7C.20.3,11D.20,10.7

设x为int型变量,则执行以下语句后,x的值为 x=10; x+=x;A.10B.20C.40D.30