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("猜的数字大了")

结果:

3 数字猜谜游戏

上一篇:动态规划求斐波那契数列


下一篇:第六章第二十二题(数学:平方根的近似求法)(Math: approximate the square root) - 编程练习题答案