运行下列程序: x=Input Box("input value Of x”) Select Case x Case Is>O y=y+1 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
第1题:
运行下列程序: 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.-7
B.-9
C.-8
D.-10
第2题:
下列Python程序的运行结果是()x = 0 y = True print(x>y and 'A' < 'B')
A.True
B.False
C.true
D.false
第3题:
8、下列Python程序的运行结果是() x = 0 y = True print(x>y and 'A' < 'B')
A.True
B.False
C.true
D.false
第4题:
下列选项中,用于为<input>标签定义标注的标签是()
A.<input />
B.<label>
C.<select></select>
D.<form>
第5题:
3、在 Python 中,正确的输入语句为【 】。
A.x,y=input()
B.x+y=input()
C.x=y=input(x,y)
D.x,y =input(请输入两个数据:)