问题
单项选择题
下列程序执行后,变量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 if
A.0
B.1000
C.20
D.100
答案
参考答案:B