[单项选择题] 下列程序执行后,变量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 thend=a: a=c: c: d end if if c>b thend=b: b=c: c=d end if
A.0
B.1000
C.20
D.100
正确答案:B

[单项选择题] 下列程序执行后,变量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 thend=a: a=c: c: d end if if c>b thend=b: b=c: c=d end if
A.0
B.1000
C.20
D.100
正确答案:B
上一篇 [单项选择题] 设有定义:int a,*pa=&a;,以下scanf语句中能正确为变量a读入数据的是( )。
下一篇 [填空题] 设有数组定义:int a[]=11,22,33,44,55,66,77,88,99;则执行下列几个语句后的输出结果是