那请给我一个数字炸弹的代码示例
时间: 2024-04-12 16:30:06 浏览: 78
一个代码例子
好的,请看以下的 Python 代码示例:
```python
import random
def game():
secret_number = random.randint(1, 100)
attempts = 0
print("Welcome to the Number Bomb Game!")
print("I have chosen a number between 1 and 100. Can you guess it?")
while True:
guess = int(input("Enter your guess: "))
attempts += 1
if guess < secret_number:
print("Too low! Try a higher number.")
elif guess > secret_number:
print("Too high! Try a lower number.")
else:
print(f"Congratulations! You guessed the number in {attempts} attempts!")
break
game()
```
这个代码示例实现了一个简单的数字炸弹游戏。游戏开始时,会随机生成一个1到100之间的秘密数字。玩家需要通过输入猜测的数字来尝试猜中秘密数字。如果猜测的数字比秘密数字小,程序会提示玩家尝试一个更大的数字;如果猜测的数字比秘密数字大,程序会提示玩家尝试一个更小的数字。直到玩家猜中秘密数字,游戏结束并显示玩家所用的尝试次数。
请注意,这只是一个简单的示例代码,您可以根据自己的需求进行修改和扩展。希望对您有帮助!
阅读全文