用java代码编写一个斗地主游戏
时间: 2023-09-27 20:06:17 浏览: 114
好的,斗地主游戏是一款经典的扑克牌游戏,以下是一个简单的Java代码实现:
```java
import java.util.*;
public class DouDiZhu {
public static void main(String[] args) {
// 初始化扑克牌
List<String> poker = new ArrayList<>();
String[] colors = {"♠", "♥", "♣", "♦"};
String[] numbers = {"2", "A", "K", "Q", "J", "10", "9", "8", "7", "6", "5", "4", "3"};
for (String color : colors) {
for (String number : numbers) {
poker.add(color + number);
}
}
poker.add("大王");
poker.add("小王");
// 洗牌
Collections.shuffle(poker);
// 发牌
List<String> player1 = new ArrayList<>();
List<String> player2 = new ArrayList<>();
List<String> player3 = new ArrayList<>();
List<String> dipai = new ArrayList<>();
for (int i = 0; i < poker.size(); i++) {
String p = poker.get(i);
if (i >= 51) {
dipai.add(p);
} else if (i % 3 == 0) {
player1.add(p);
} else if (i % 3 == 1) {
player2.add(p);
} else if (i % 3 == 2) {
player3.add(p);
}
}
// 排序
Collections.sort(player1);
Collections.sort(player2);
Collections.sort(player3);
Collections.sort(dipai);
// 输出
System.out.println("玩家1:" + player1);
System.out.println("玩家2:" + player2);
System.out.println("玩家3:" + player3);
System.out.println("底牌:" + dipai);
}
}
```
这个代码主要实现了以下几个步骤:
1. 初始化扑克牌,包括花色和数字,将其存储在一个List中。
2. 使用Collections.shuffle()方法将扑克牌顺序打乱。
3. 根据游戏规则,将牌发给三个玩家和底牌。
4. 使用Collections.sort()方法对每个玩家的牌进行排序。
5. 输出每个玩家和底牌的牌。
这个代码只是一个简单的实现,实际的斗地主游戏还需要实现出牌、比较大小、判断胜负等功能。
阅读全文