① 鎬庝箞java瀹炵幇榧犳爣鐐瑰嚮鐨勪簲瀛愭嬪晩 錛熷悇浣嶅ぇ渚 甯甯蹇
import java.awt.*;
import java.awt.event.*;
import java.awt.color.*;
class wuzi {
 public static void main(String[] args)  {  
 frame myFrame =new frame("浜斿瓙媯");
 }
}
 class frame extends Frame implements ActionListener{
 MenuBar mbar=new MenuBar();
 Menu mgame=new Menu("閫夐」");
 Menu mhelp=new Menu("甯鍔");
 MenuItem mstart=new MenuItem("寮濮 ");
 MenuItem mclose=new MenuItem("緇撴潫");
 MenuItem mabout=new MenuItem("鍏充簬");
  myCanvas canvas; 
  frame(String t) { 
   super(t);    
         canvas = new myCanvas(this); 
   mgame.add(mstart);
  mgame.add(mclose);
  mhelp.add(mabout);
  mgame.addActionListener(this);
  mstart.addActionListener(this);
  mclose.addActionListener(this);
  mhelp.addActionListener(this);
  mabout.addActionListener(this);
  mbar.add(mgame);
  mbar.add(mhelp);
  this.setMenuBar(mbar);
    addWindowListener(new WindowAdapter(){   
     public void windowClosing(WindowEvent e){
     System.exit(0);   
     }  
     }  
     ); 
     this.add(canvas); 
     this.pack(); 
     this.show();
     this.setLocation(380,100);
   this.setResizable(false);
 }
  public void actionPerformed(ActionEvent e)
   {
    if(e.getSource()==mstart)
    {
     repaint();
    }
    else if(e.getSource()==mclose){
     this.dispose();
     System.exit(0);
    }
    if(e.getSource()==mabout){
     about frm=new about();
     }
    pack();
    }
    } 
class chessman{ 
  private boolean isExist;
  private boolean isColor;
  public chessman(boolean isExist){ 
  this.isExist = isExist ;
  } 
  boolean getChessExist() {  
   return isExist; 
   } 
  boolean getChessColor() {
   return isColor; 
   } 
  void setChessExist(boolean m){        
   isExist = m; 
   } 
  void setChessColor(boolean m) { //璁劇疆媯嬬殑棰滆壊 
   isColor = m;
    }
    }
    
 class myCanvas extends Canvas implements MouseListener {
   frame myFrame;
   //淇濆瓨媯嬪瓙
   private chessman chessMan[][] = new chessman[19][19];
   
   int mx,my;//鑾峰彇浣嶇疆
   int x,y; 
   boolean state = true;
   myCanvas(frame myFrame) {
  
    this.myFrame = myFrame; 
    setBackground(Color.cyan); 
    addMouseListener(this); 
    for(int i=0;i<19;i++) 
    for(int j=0;j<19;j++)  
       chessMan[i][j] = new chessman(false);
       }
   public void start() {
    for(int i=0;i<19;i++)
     for(int j=0;j<19;j++)  
         chessMan[i][j].setChessExist(false);
         }
   public void paint(Graphics g) {//鐢葷嚎
    Dimension size = this.getSize(); 
    g.drawRect(0,0,size.width-1,size.height-1);      
    g.draw3DRect(1,1,size.width-3,size.height-3,true); 
    for(int i=0;i<19;i++)  
    g.drawLine(30,i*24+30,462,i*24+30); 
    for(int j=0;j<19;j++)  
    g.drawLine(j*24+30,30,j*24+30,462); 
    x=(int)((mx-20)/24); 
    y=(int)((my-20)/24); //璁$畻钀藉瓙浣嶇疆 
    if(!chessMan[y][x].getChessExist()&&(mx>=18||my>=18)){  
             chessMan[y][x].setChessExist(true);            
             chessMan[y][x].setChessColor(state);   
             state = !state;
          } 
         for(int i =0;i<19;i++) 
             for(int j=0;j<19;j++){ 
              if(chessMan[i][j].getChessExist()) 
              {   
               if(chessMan[i][j].getChessColor()==true){ 
                g.setColor(Color.black); //榛樿ら粦媯嬪厛涓
               
                }  
               else{  
                g.setColor(Color.white); 
                }    
               g.fillOval(j*24+21,i*24+21,18,18); 
              // whowin(x, y) ;
               } 
              }
             } 
             
               /* public void whowin(int x, int y) {
        int m1 = 0, m2 = 0, m3 = 0, m4 = 0;
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戝乏-------
            if (x - i > 0 && chessMan[x - i][y] == chessMan[x][y]) {
                m1++;
            }
        }
    
        for (int j = 1; j < 5; j++) {//鍒ゆ柇-------鍚戝彸-------
            if (x + j < 20 && chessMan[x + j][y] == chessMan[x][y]) {
                m1++;
            }
        }
 
//鍒ゆ柇杈撹耽------shu綰
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戜笅-----------
            if (y + i < 20 && chessMan[x][y + i] == chessMan[x][y]) {
                m2++;
            }
        }
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戜笂------------
            if (y - i > 0 && chessMan[x][y - i] == chessMan[x][y]) {
                m2++;
            }
        }
//鍒ゆ柇杈撹耽------\綰
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戝乏涓-------------
if (x - i > 0 && y - i > 0 && chessMan[x - i][y - i] == chessMan[x][y]) {
                m3++;
            }
        }
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戝彸涓-------------
            if (x + i < 20 && y + i < 20 && chessMan[x + i][y + i] == chessMan[x][y]) {
                m3++;
            }
        }
        //鍒ゆ柇杈撹耽------/綰
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戝乏涓------------
            if (x - i > 0 && y + i < 20 && chessMan[x - i][y + i] == chessMan[x][y]) {
                m4++;
            }
        }
        for (int i = 1; i < 5; i++) {//鍒ゆ柇-------鍚戝彸涓--------------
            if (y - i > 0 && x + i < 20 && chessMan[x + i][y - i] == chessMan[x][y]) {
                m4++;
            }
        }
        //***************鏈鍚庡垽鏂杈撹耽********************
        if (m1 > 3 || m2 > 3 || m3 > 3 || m4 > 3) {
            if (chessMan[x][y] == ) {//----鍥犱負涓嬫嬪悗灝嗘嬪瓙棰滆壊鏀逛負瀵規柟鐨勯滆壊錛屾墍浠ヨ繖閲屼簰鐩歌皟涓涓---
                JOptionPane.showMessageDialog(this, "hei-----win");
                isgamealive = 0;
            }
            if (chessMan[x][y] == false) {
                JOptionPane.showMessageDialog(this, "-----win");
                isgamealive = 0;
            }
        }
    }*/
  public Dimension getPreferredSize() { 
   return new Dimension(492,492); //榪斿洖鍥懼艦澶у皬 
   }
  public void mousePressed(MouseEvent e) {}
  public void mouseReleased(MouseEvent e){} 
  public void mouseEntered(MouseEvent e){}  
     public void mouseExited(MouseEvent e){}
     public void mouseClicked(MouseEvent e){ 
      mx = e.getX(); 
      my = e.getY(); 
      repaint();
      }
     }
class about extends Frame implements WindowListener //璁劇疆鍏充簬
{
 about() {
  this.setSize(300,170);
  this.setTitle("鍏充簬浜斿瓙媯嬫父鎴");
  this.addWindowListener(this);
  this.setVisible(true);
  this.setLocation(400,200);
  this.setResizable(false);
  this.setLayout(new FlowLayout());
  Label text1 =new Label();
  Label text2 =new Label();
  Label text3=new Label();
  text1.setText("娓告垙浠嬬粛錛");
  text1.setFont(new Font("榛戜綋",Font.ITALIC,25));
  text1.setAlignment(text1.CENTER);
  text1.setVisible(true);
  text2.setText("妯鎺掞紝絝栨帓錛屾枩鎺掞紝璋佸厛鏀懼埌5涓灝辮耽銆");
  text2.setFont(new Font("榛戜綋",Font.PLAIN,15));
  text2.setAlignment(text1.LEFT);
  text2.setVisible(true);
  
  text3.setText("鍒朵綔鑰咃細0957207鍚村悰");
  text3.setFont(new Font("妤蜂綋",Font.PLAIN,15));
  text3.setVisible(true);
  
  this.add(text1,"North");
  this.add(text2,"West");
  this.add(text3,"South");
  this.show(true);
 }
 public void windowActivated(WindowEvent e){}
 public void windowClosed(WindowEvent e){
 }
 public void windowClosing(WindowEvent e){
  this.dispose();
 }
 public void windowDeactivated(WindowEvent e) {}
 public void windowDeiconified(WindowEvent e) {}
 public void windowIconified(WindowEvent e) {}
 public void windowOpened(WindowEvent e) {} 
}
② 跪求JAVA五子棋源代碼
很sb的電腦五子棋:
import java.io.*; 
import java.util.*; 
public class Gobang { 
// 定義一個二維數組來充當棋盤 
private String[][] board; 
// 定義棋盤的大小 
private static int BOARD_SIZE = 15; 
public void initBoard() { 
    // 初始化棋盤數組 
    board = new String[BOARD_SIZE][BOARD_SIZE]; 
    // 把每個元素賦為"╋",用於在控制台畫出棋盤 
    for (int i = 0; i < BOARD_SIZE; i++) { 
      for (int j = 0; j < BOARD_SIZE; j++) { 
        // windows是一行一行來列印的。坐標值為(行值, 列值) 
        board[i][j] = "╋"; 
      } 
    } 
} 
// 在控制台輸出棋盤的方法 
public void printBoard() { 
    // 列印每個數組元素 
    for (int i = 0; i < BOARD_SIZE; i++) { 
      for (int j = 0; j < BOARD_SIZE; j++) { 
        // 列印數組元素後不換行 
        System.out.print(board[i][j]); 
      } 
      // 每列印完一行數組元素後輸出一個換行符 
      System.out.print("\n"); 
    } 
} 
// 該方法處理電腦下棋:隨機生成2個整數,作為電腦下棋的坐標,賦給board數組。 
private void compPlay() { 
    // 構造一個隨機數生成器 
    Random rnd = new Random(); 
    // Random類的nextInt(int n))方法:隨機地生成並返回指定范圍中的一個 int 值, 
    // 即:在此隨機數生成器序列中 0(包括)和 n(不包括)之間均勻分布的一個int值。 
    int compXPos = rnd.nextInt(15); 
    int compYPos = rnd.nextInt(15); 
    // 保證電腦下的棋的坐標上不能已經有棋子(通過判斷對應數組元素只能是"╋"來確定) 
    while (board[compXPos][compYPos].equals("╋") == false) { 
      compXPos = rnd.nextInt(15); 
      compYPos = rnd.nextInt(15); 
    } 
    System.out.println(compXPos); 
    System.out.println(compYPos); 
    // 把對應的數組元素賦為"○"。 
    board[compXPos][compYPos] = "○"; 
} 
// 該方法用於判斷勝負:進行四次循環掃描,判斷橫、豎、左斜、右斜是否有5個棋連在一起 
private boolean judgeWin() { 
    // flag表示是否可以斷定贏/輸 
    boolean flag = false; 
    // joinEle:將每一個橫/豎/左斜/右斜行中的元素連接起來得到的一個字元串 
    String joinEle; 
    // 進行橫行掃描 
    for (int i = 0; i < BOARD_SIZE; i++) { 
      // 每掃描一行前,將joinEle清空 
      joinEle = ""; 
      for (int j = 0; j < BOARD_SIZE; j++) { 
        joinEle += board[i][j]; 
      } 
      // String類的contains方法:當且僅當該字元串包含指定的字元序列時,返回true。 
      if (joinEle.contains("●●●●●")) { 
        System.out.println("您贏啦!"); 
        flag = true; 
        // 停止往下繼續執行,提前返回flag。 
        // 如果執行了這個return,就直接返回該方法的調用處; 
        // 不會再執行後面的任何語句,包括最後那個return語句。 
        // (而break僅僅是完全跳出這個for循環,還會繼續執行下面的for循環。) 
        return flag; 
      } else if (joinEle.contains("○○○○○")) { 
        System.out.println("您輸啦!"); 
        flag = true; 
        // 提前返回flag 
        return flag; 
      } 
    } 
    // 進行豎行掃描 
    for (int i = 0; i < BOARD_SIZE; i++) { 
      joinEle = ""; 
      for (int j = 0; j < BOARD_SIZE; j++) { 
        // 豎行的元素是它們的列值相同 
        joinEle += board[j][i]; 
      } 
      if (joinEle.contains("●●●●●")) { 
        System.out.println("您贏啦!"); 
        flag = true; 
        return flag; 
      } else if (joinEle.contains("○○○○○")) { 
        System.out.println("您輸啦!"); 
        flag = true; 
        return flag; 
      } 
    } 
    // 進行左斜行掃描 
    for (int i = -(BOARD_SIZE - 2); i < BOARD_SIZE - 1; i++) { 
      joinEle = ""; 
      for (int j = 0; j < BOARD_SIZE; j++) { 
        int line = i + j; 
        // 只截取坐標值沒有越界的點 
        if (line >= 0 && line < 15) { 
          joinEle += board[j][line]; 
        } 
      } 
      if (joinEle.contains("●●●●●")) { 
        System.out.println("您贏啦!"); 
        flag = true; 
        return flag; 
      } else if (joinEle.contains("○○○○○")) { 
        System.out.println("您輸啦!"); 
        flag = true; 
        return flag; 
      } 
    } 
    // 進行右斜行掃描 
    for (int i = 1; i < 2 * (BOARD_SIZE - 1); i++) { 
      joinEle = ""; 
      for (int j = 0; j < BOARD_SIZE; j++) { 
        int line = i - j; 
        if (line >= 0 && line < 15) { 
          joinEle += board[j][line]; 
        } 
      } 
      if (joinEle.contains("●●●●●")) { 
        System.out.println("您贏啦!"); 
        flag = true; 
        return flag; 
      } else if (joinEle.contains("○○○○○")) { 
        System.out.println("您輸啦!"); 
        flag = true; 
        // 最後這個return可省略 
      } 
    } 
    // 確保該方法有返回值(如果上面條件都不滿足時) 
    return flag; 
} 
public static void main(String[] args) throws Exception, IOException { 
    Gobang gb = new Gobang(); 
    gb.initBoard(); 
    gb.printBoard(); 
    // BufferedReader類:帶緩存的讀取器————從字元輸入流中讀取文本,並緩存字元。可用於高效讀取字元、數組和行。 
    // 最好用它來包裝所有其 read() 操作可能開銷很高的 Reader(如 FileReader 和 InputStreamReader)。 
    // 下面構造一個讀取器對象。 
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); 
    // 定義輸入字元串 
    String inputStr = null; 
    // br.readLine():每當在鍵盤上輸入一行內容按回車,剛輸入的內容將被br(讀取器對象)讀取到。 
    // BufferedReader類的readLine方法:讀取一個文本行。 
    // 初始狀態由於無任何輸入,br.readLine()會拋出異常。因而main方法要捕捉異常。 
    while ((inputStr = br.readLine()) != null) { 
      // 將用戶輸入的字元串以逗號(,)作為分隔符,分隔成2個字元串。 
      // String類的split方法,將會返回一個拆分後的字元串數組。 
      String[] posStrArr = inputStr.split(","); 
      // 將2個字元串轉換成用戶下棋的坐標 
      int xPos = Integer.parseInt(posStrArr[0]); 
      int yPos = Integer.parseInt(posStrArr[1]); 
      // 校驗用戶下棋坐標的有效性,只能是數字,不能超出棋盤范圍 
      if (xPos > 15 || xPos < 1 || yPos > 15 || yPos < 1) { 
        System.out.println("您下棋的坐標值應在1到15之間,請重新輸入!"); 
        continue; 
      } 
      // 保證用戶下的棋的坐標上不能已經有棋子(通過判斷對應數組元素只能是"╋"來確定) 
      // String類的equals方法:比較字元串和指定對象是否相等。結果返回true或false。 
      if (gb.board[xPos - 1][yPos - 1].equals("╋")) { 
        // 把對應的數組元素賦為"●"。 
        gb.board[xPos - 1][yPos - 1] = "●"; 
      } else { 
        System.out.println("您下棋的點已有棋子,請重新輸入!"); 
        continue; 
      } 
      // 電腦下棋 
      gb.compPlay(); 
      gb.printBoard(); 
      // 每次下棋後,看是否可以斷定贏/輸了 
      if (gb.judgeWin() == false) { 
        System.out.println("請輸入您下棋的坐標,應以x,y的格式:"); 
      } else { 
        // 完全跳出這個while循環,結束下棋 
        break; 
      } 
    } 
} 
}
③ 求一個簡單的JAVA五子棋代碼!! 網上復制的別來了!
以下是現寫的 實現了兩人對戰  自己復制後運行把 沒什麼難度 類名 Games
import java.util.Scanner;
public class Games {
private String board[][];
private static int SIZE = 17;
private static String roles = "A玩家";
//初始化數組
public void initBoard() {
board = new String[SIZE][SIZE];
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
//   if(i==0){
//    String str = "";
//    str += j+"  ";
//    board[i][j]= str;
//   }else if(i!=0&&j==0){
//   String str = "";
//   str += i+"  ";
//    board[i][j]= str;
//   }else{
board[i][j] = "╋";
//   }
}
}
}
//輸出棋盤
public void printBoard() {
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
System.out.print(board[i][j]);
}
System.out.println();
}
}
//判斷所下棋子位置是否合理
public boolean isOk(int x, int y) {
boolean isRight = true;
if (x >= 16 || x < 1 || y >= 16 | y < 1) {
//System.out.println("輸入錯誤,請從新輸入");
isRight = false;
}
if (board[x][y].equals("●") || board[x][y].equals("○")) {
isRight = false;
}
return isRight;
}
//判斷誰贏了
public void whoWin(Games wz) {
// 從數組挨個查找找到某個類型的棋子就從該棋子位置向右,向下,斜向右下 各查找5連續的位置看是否為5個相同的
int xlabel;// 記錄第一次找到某個棋子的x坐標
int ylabel;// 記錄第一次找到某個棋子的y坐標
// ●○╋
// 判斷人是否贏了
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
if (board[i][j].equals("○")) {
xlabel = i;
ylabel = j;
// 橫向找 x坐標不變 y坐標以此加1連成字元串
String heng = "";
if (i + 5 < SIZE && j + 5 < SIZE) {
for (int k = j; k < j + 5; k++) {
heng += board[i][k];
}
if (heng.equals("○○○○○")) {
System.out.println(roles+"贏了!您輸了!");
System.exit(0);
}
// 向下判斷y不變 x逐增5 連成字元串
String xia = "";
for (int l = j; l < i + 5; l++) {
xia += board[l][j];
// System.out.println(xia);
}
if (xia.equals("○○○○○")) {
System.out.println(roles+"贏了!您輸了!");
System.exit(0);
}
// 斜向右下判斷
String youxia = "";
for (int a = 1; a <= 5; a++) {
youxia += board[xlabel++][ylabel++];
}
if (youxia.equals("○○○○○")) {
System.out.println(roles+"贏了!您輸了!");
System.exit(0);
}
}
}
}
}
// 判斷電腦是否贏了
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
if (board[i][j].equals("●")) {
xlabel = i;
ylabel = j;
// 橫向找 x坐標不變 y坐標以此加1連成字元串
String heng = "";
if (j + 5 < SIZE && i + 5 < SIZE) {
for (int k = j; k < j + 5; k++) {
heng += board[i][k];
}
if (heng.equals("●●●●●")) {
System.out.println(roles+"贏輸了!您輸了!");
System.exit(0);
}
// 向下判斷y不變 x逐增5 連成字元串
String xia = "";
for (int l = i; l < i + 5; l++) {
xia += board[l][ylabel];
// System.out.println(xia);
}
if (xia.equals("●●●●●")) {
System.out.println(roles+"贏了!您輸了!");
System.exit(0);
}
// 斜向右下判斷
String youxia = "";
for (int a = 1; a <= 5; a++) {
youxia += board[xlabel++][ylabel++];
}
if (youxia.equals("●●●●●")) {
System.out.println(roles+"贏了!您輸了!");
System.exit(0);
}
}
}
}
}
}
public static void main(String[] args) {
Games wz = new Games();
Scanner sc = new Scanner(System.in);
wz.initBoard();
wz.printBoard();
while (true) {
System.out.print("請"+roles+"輸入X,Y坐標,必須在0-15范圍內,xy以空格隔開,輸入16 16結束程序");
int x = sc.nextInt();
int y = sc.nextInt();
if (x == SIZE && y == SIZE) {
System.out.println("程序結束");
System.exit(0);
}
if (x > SIZE || x < 0 || y > SIZE | y < 0) {
System.out.println("輸入錯誤,請從新輸入");
continue;
}
//如果roles是A玩家 就讓A玩家下棋,否則就讓B玩家下棋。
if (wz.board[x][y].equals("╋")&&roles.equals("A玩家")) {
wz.board[x][y] = "○";
wz.printBoard();
//判斷輸贏
wz.whoWin(wz);
}else if(wz.board[x][y].equals("╋")&&roles.equals("B玩家")){
wz.board[x][y] = "●";
wz.printBoard();
//判斷輸贏
wz.whoWin(wz);
} else {
System.out.println("此處已經有棋子,從新輸入");
continue;
}
if(roles.equals("A玩家")){
roles = "B玩家";
}else if(roles.equals("B玩家")){
roles = "A玩家";
}
}
}
}