编写一个程序,使用while循环猜数字游戏。程序随机生成一个1到100之间的整数,然后要求用户猜这个数字是多少,直到猜对为止。
时间: 2024-05-14 19:12:13 浏览: 76
做一个猜数字的游戏,随机生成1~50之间的数字,然后有10次机会,供用户输入,判断是否猜中(使用for循环)
```python
import random
answer = random.randint(1, 100)
guess = int(input("Guess the number between 1 and 100: "))
while guess != answer:
if guess < answer:
print("Too low, try again.")
else:
print("Too high, try again.")
guess = int(input("Guess again: "))
print("Congratulations, you guessed correctly!")
```
阅读全文