3 数字猜谜游戏

# 数字猜谜游戏
number = 7
guess = -1
print("数字猜谜游戏!")
while guess != number:
    guess = int(input("请输入你猜的数字:"))
    if guess == number:
        print("你猜对了!")
        print("游戏结束")
    elif guess < number:
        print("猜的数字小了")
    elif guess > number:
        print("猜的数字大了")

结果:

猜你喜欢

转载自www.cnblogs.com/CPU-Easy/p/12116169.html
今日推荐