摘要: 数字游戏续1: import random target = random.randint(0,100) count = 0 while True: guess = int(input("请输入你猜测的数字:")) count += 1 if guess < target: print("猜小了") 阅读全文
posted @ 2025-04-08 21:54 Xxxjxxx 阅读(10) 评论(0) 推荐(0)