[填空题] 有以下程序段,当在消息框中输入8后,y的值为______。 x=InputBox("Enter an Integer") x=CInt(x) Select Cas
11 查阅
[填空题] 有以下程序段,当在消息框中输入8后,y的值为______。
x=InputBox("Enter an Integer")
x=CInt(x)
Select Case x
Case Is<=0
y=0
Case Is<=10
y=5+2*x
Case Is<=15
y=x-5
Case Is>15
y=0
End Select
参考答案: