五子棋(Java实现)

import java.util.Scanner;

/**
 * 五子棋
 */

public class Gobang {
    public  static  char[][] chessbord = {
            {'┌','┬','┬','┬','┬','┬','┬','┬','┬','┐'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'├','┼','┼','┼','┼','┼','┼','┼','┼','┤'},
            {'└','┴','┴','┴','┴','┴','┴','┴','┴','┘',}
    };
    public static  String separator = "────";
    public static char pieceA='○';//玩家A的棋子
    public static char pieceB='■';
    public static int times = 0;//记录棋盘使用次数,偶数次玩家A落子,奇数次玩家B落子
    public static void main(String[] args) {
//        System.out.println("┌────┬────┬────┬────┬────┬────┬────┬────┬────┬────┐");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("├────┼────┼────┼────┼────┼────┼────┼────┼────┼────┤");
//        System.out.println("│    │    │    │    │    │    │    │    │    │    │");
//        System.out.println("└────┴────┴────┴────┴────┴────┴────┴────┴────┴────┘");
//
//        System.out.println("============================================================");
        showChessBoard();
        int totalPosition =chessbord.length*chessbord[0].length;
        Scanner sc = new Scanner(System.in);
        outer:
        while(times=0&&position4)&&(j+4

你可能感兴趣的:(java,java,开发语言)