当前位置: 高中信息技术 / 填空题
  • 1. 下列程序运行后,在键盘输入100,则程序的运行结果是。 

    x=input("Please input x:")

    if x<0 or x>=20:     

        print(x//10) 

    elif 0<=x<5:     

        print(x) 

    elif 5<=x<10:     

        print(3*x-5) 

    elif 10<=x<20: 

        print(0.5*x-2)

微信扫码预览、分享更方便