有以下程序段,当在消息框中输入8后,Y的值为____________。 x=InputBox(“Enter an Integer”) x=CInt(x) Select Case x Case Is

admin2012-09-07  20

问题 有以下程序段,当在消息框中输入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

选项

答案2l

解析 本题考查程序段的分析。Select Case语句描述了当x取不同值时y值的情况。当在输入框中输入8,并单击“确定”按钮后,x得到的值为8。此时,满足Select Case语句中的第二个Case语句,因此执行y=5+2*x=5+2*8=21。
转载请注明原文地址:https://jikaoti.com/ti/nnO0FFFM
0

最新回复(0)