文件名称:用java编写的纸牌游戏
文件大小:2KB
文件格式:RAR
更新时间:2014-01-03 16:00:24
java 代码 纸牌
用java编写的纸牌游戏
package newpackage;
public class Belote {
static Player[] players;
static Card[] cards;
public Belote() {
// create four Player objects
String[] playerNames = { "Adam", "Bob", "Charlie", "Daniel" };
players = new Player[4];
for(int i =0; i
【文件预览】:
code for card game
----Belote.java(3KB)
----Player.java(1KB)
----Card.java(452B)