首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > 小游戏五子棋大战

小游戏五子棋大战

资 源 简 介

class LNode{ private int row; private int col; private Color chessColor; private LNode next; public LNode(int row,int col,Color chessColor){ this.row=row; this.col=col; this.chessColor=chessColor; } public LNode(){ this.next=null; } public void setRow(int row){ this.row=row; } public int getRow(){ return this.row; } public void setCol(int col){ this.col=col; } public int getCol(){ return this.col; } public void setChessColor(Color chessColor){ this.chessColor=chessColor; } public Color getChessColor(){ return this.chessColor; } public void setNext(LNode next){ this.next=next; } public LNode getNext(){ return this.next; } } class NullAndCount{ private int nullCount=0; private int chessCount=0; public void setNullCount(int nullCount){ this.nullCount=nullCount; } public int getNullCount(){ return this.nullCount; } public void setChessCoun

文 件 列 表

wuziqi
FiveGame

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
  • 猕猴桃 3小时前 成为了本站会员

  • 11 6小时前 成为了本站会员

  • 开心快活人 9小时前 成为了本站会员

  • 晋财 10小时前 成为了本站会员

  • WYG 1天前 成为了本站会员

  • Shine 1天前 成为了本站会员

  • 柳贻 1天前 成为了本站会员

  • hallelujah_HL 1天前 成为了本站会员

  • 焦昱贺 1天前 成为了本站会员

  • Rubin 1天前 成为了本站会员

0.533391s