Python 练习

1. 题目

编写一个猜数游戏,该游戏会随机产生一个整数(0-10),用户可以随意输入一个数进行比较,在比较过程中,会不断提示用户输入的数是大了还是小了,直到用户输入的数等于随机数,程序终止。

2. 分析

3. 实例

点我看答案
import random

i = random.randint(0, 10)
while True:
    s = int(input('请输入一个整数'))
    if s > i:
        print("你猜的太大了")
    elif s < i:
        print("你猜的太小了")
    else:
        print("你猜对了")
        break

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""