C#窗体应用程序编写猜拳游戏
时间: 2023-07-12 18:28:11 浏览: 132
C# 猜拳游戏
好的,下面是一个简单的 C# 窗体应用程序编写猜拳游戏的示例代码:
1. 创建一个 Windows 窗体应用程序项目,命名为“猜拳游戏”。
2. 在窗体中添加三个按钮,分别代表“石头”、“剪刀”、“布”三种手势。
3. 在窗体中添加一个 Label 控件,用于显示游戏结果。
4. 在窗体的代码中,定义一个数组来存储三种手势的名称和对应的编号:
```
string[] gestures = { "石头", "剪刀", "布" };
```
5. 在窗体的代码中,定义一个 Random 类型的变量,用于生成随机数:
```
Random random = new Random();
```
6. 在窗体的代码中,为每个按钮的 Click 事件添加处理程序,用于模拟玩家和计算机的出拳,并比较胜负:
```
private void btnStone_Click(object sender, EventArgs e)
{
int playerGesture = 0; // 玩家出拳为石头
int computerGesture = random.Next(0, 3); // 计算机随机出拳
string result = CompareGesture(playerGesture, computerGesture); // 比较胜负
lblResult.Text = result; // 显示游戏结果
}
private void btnScissors_Click(object sender, EventArgs e)
{
int playerGesture = 1; // 玩家出拳为剪刀
int computerGesture = random.Next(0, 3); // 计算机随机出拳
string result = CompareGesture(playerGesture, computerGesture); // 比较胜负
lblResult.Text = result; // 显示游戏结果
}
private void btnPaper_Click(object sender, EventArgs e)
{
int playerGesture = 2; // 玩家出拳为布
int computerGesture = random.Next(0, 3); // 计算机随机出拳
string result = CompareGesture(playerGesture, computerGesture); // 比较胜负
lblResult.Text = result; // 显示游戏结果
}
```
7. 在窗体的代码中,定义一个 CompareGesture 方法,用于比较玩家和计算机的手势,并返回游戏结果:
```
private string CompareGesture(int playerGesture, int computerGesture)
{
if (playerGesture == computerGesture)
{
return "平局";
}
else if ((playerGesture + 1) % 3 == computerGesture)
{
return "你输了";
}
else
{
return "你赢了";
}
}
```
8. 运行程序,点击三个按钮进行游戏,可以看到游戏结果在 Label 中显示。
这就是一个简单的 C# 窗体应用程序编写猜拳游戏的示例代码。
阅读全文