摘要: import random target = random.randint(1, 100) count = 0 while True: guess = int(input("请输入你猜测的数字:")) count += 1 if guess > target: print("猜大了") elif g 阅读全文
posted @ 2025-04-07 00:12 linlikun 阅读(12) 评论(0) 推荐(0)