编写石头剪刀布程序的基本步骤如下:
获取用户的选择
提示用户输入“石头”、“剪刀”或“布”。
验证用户输入是否有效,如果无效则重新提示用户输入。
生成电脑的选择
使用随机数生成器随机选择“石头”、“剪刀”或“布”。
比较用户和电脑的选择
根据游戏规则判断胜负。
显示结果
显示游戏结果,并询问用户是否要再玩一次。
下面是一个用Python编写的简单石头剪刀布游戏的示例代码:
```python
import random
def get_user_choice():
"""获取用户的选择"""
valid_choices = ['石头', '剪刀', '布']
while True:
user_choice = input("请输入你的选择(石头,剪刀,布): ").strip().lower()
if user_choice in valid_choices:
return user_choice
else:
print("输入无效,请重新输入!")
def get_computer_choice():
"""随机生成计算机的选择"""
choices = ['石头', '剪刀', '布']
return random.choice(choices)
def determine_winner(user_choice, computer_choice):
"""判断胜负"""
if user_choice == computer_choice:
return "平局!"
elif (user_choice == '石头' and computer_choice == '剪刀') or \
(user_choice == '剪刀' and computer_choice == '布') or \
(user_choice == '布' and computer_choice == '石头'):
return "玩家胜利!"
else:
return "电脑胜利!"
def play_game():
while True:
user_choice = get_user_choice()
computer_choice = get_computer_choice()
print(f"你出的是: {user_choice}")
print(f"电脑出的是: {computer_choice}")
result = determine_winner(user_choice, computer_choice)
print(result)
play_again = input("是否再玩一次?(是/否): ").strip().lower()
if play_again != '是':
break
if __name__ == "__main__":
play_game()
```
代码解释:
get_user_choice()
提示用户输入选择,并验证输入是否有效。
get_computer_choice()
使用`random.choice()`生成一个随机选择。
determine_winner(user_choice, computer_choice)
根据游戏规则判断胜负,并返回结果。
play_game()
游戏主循环,不断获取用户和电脑的选择,显示结果,并询问用户是否再玩一次。
这个程序可以作为一个简单的石头剪刀布游戏实现,你可以根据需要进一步扩展和优化。