单项选择题
x=10 If x< =12 then y=2*x+6 Else y=x/2 End If上述程序段中y的值是()
A.5B.10C.25D.26
下面程序的运行结果是()Dim a As Integer, b As Integer a=6 b=15 S=1...
下面程序的运行结果是()Dim a As Integer, b As Integer a=6 b=15 S=1+(a*b)/2Print S
A.45B.15C.46D.6
执行Do……Loop Until语句时()A.其余说法都不对B.顺序执行C.先循环后判断D.先判断后循环
单项选择题执行Do……Loop Until语句时()
A.其余说法都不对B.顺序执行C.先循环后判断D.先判断后循环
VB中正确的循环语句是()A.For x=10 to 1B.For x=1 to 10step -1C.For...
单项选择题VB中正确的循环语句是()
A.For x=10 to 1B.For x=1 to 10step -1C.For x=1 to 10step 2D.For x=1 to step 10