网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

有如下程序 x=InputBox("input value of x") Select Case x Case Is>0 y=y+l Case Is=0 y=x+2 Case Else y=x+3 End Select. Print x: y 运行时,从键盘输入—5,输出的结果是( )。

A.-7

B.-9

C.-8

D.-10


参考答案

更多 “ 有如下程序 x=InputBox("input value of x") Select Case x Case Is0 y=y+l Case Is=0 y=x+2 Case Else y=x+3 End Select. Print x: y 运行时,从键盘输入—5,输出的结果是( )。A.-7B.-9C.-8D.-10 ” 相关考题
考题 运行下列程序: x=Input Box("input value Of x”) Select Case x Case IsO y=y+1 Case Is=0 y=x+2 Case Else y=x+3 End Select Print x;y 运行时,从键盘输入-5,输出的结果是( )。A.-7B.-9C.-8D.-10

考题 运行下列程序: x=InputBox("input value of x") Select Case X Case Is>0 y=y+1 Case Is=0 y=x+2 Case ELse y=x+3 End Select Print x;y 运行时,从键盘输入-5,输出的结果是( )。A.-7B.-9C.-8D.-10

考题 有如下程序 x=InputBox("input value of x") Select Case x Case Is>0 y=y+1 Case Is=0 y=x+2 Case Else y=x+3 End Select Print x ;y 运行时,从键盘输入-5,输出的结果是( )。A.-7B.-9C.-8D.-10

考题 有如下程序: x = InputBox("Input value of x") Select Case x Case Is > 0 y=y+1 Case Is = 0 y=x + 2 Case Else y=x + 3 End Select Print x, y运行时,从键盘输入-5,输出的结果是( )。A.-7B.-9C.-8D.-10

考题 运行下列程序: x = InputBox( "input value of x" ) Select Case x Case Is > 0 y=y+1 Case Is = 0 y=x+2 Case Else y=x+3 End Select Print x; y运行时,从键盘输入-5,输出的结果是( )。A.-7B.-9C.-8D.-10

考题 循环语句while (!x!y)中的循环条件表达式等价于A.!(x || y)B.!(x!=0||y!=0)C.x=0 y=0D.!(x==0 || y==0)E.!(x==0 y==0)

考题 下列Python程序的运行结果是()x = 0 y = True print(x>y and 'A' < 'B')A.TrueB.FalseC.trueD.false

考题 循环语句while (!x!y)中的循环条件表达式等价于A.x=0 y=0B.!(x || y)C.!(x==0 || y==0)D.!(x==0 y==0)E.!(x!=0||y!=0)

考题 8、下列Python程序的运行结果是() x = 0 y = True print(x>y and 'A' < 'B')A.TrueB.FalseC.trueD.false