服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - Java控制台版五子棋的简单实现方法

Java控制台版五子棋的简单实现方法

2021-08-02 10:41钱多多不多余 Java教程

这篇文章主要给大家介绍了关于Java控制台版五子棋的简单实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

设计一个10*10的棋盘:

行号、列号单独输出

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package yu;
 
import java.util.Scanner;
 
public class WuZiQi {
    /*● 棋子1
 ○ 棋子2
     *
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
 String [] [] qipan=new String [10] [10];
 //初始化棋盘:
 for(int k=0;k<qipan.length;k++){
     for(int q=0;q<qipan[k].length;q++){
         qipan[k][q]="+ ";
         }
 }
 //输出棋盘:
 System.out.print(" ");
 for(int i=0;i<10;i++){
     System.out.print(i+" ");
 }
 System.out.println();
 for(int k=0;k<qipan.length;k++){
     System.out.print(k+" ");
     for(int q=0;q<qipan[k].length;q++){
         System.out.print(qipan[k][q]);
         }
     System.out.println();
 }

输入坐标下棋(x,y),并作容错处理:

  1. 保证输入的坐标是(x,y);
  2. 下标越界处理;
  3. 判断此坐标有无棋子;
  4. 确保坐标输入为数字。
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
int x,y;//储存下棋坐标:
 Scanner sc=new Scanner(System.in);
 boolean flag=true;//区分黑白棋;
 while(true){
 System.out.println("请输入坐标下棋,坐标格式(x,y)");
 String str=sc.nextLine();
 String [] str1=str.split(",");
  //容错处理1
  if(str1.length!=2){
     System.out.println("坐标输入错误,请重新输入!!");
     
  }else{
  //容错处理3
     try{
         x=Integer.parseInt(str1[0]);
    y=Integer.parseInt(str1[1]);
     }catch(Exception e){
         System.out.println("坐标输入错误,请重新输入!!");
         continue;
     }
     //容错处理2--下标越界
     if(x>=10||y>=10){
         System.out.println("坐标输入错误,请重新输入!!");
     }else{
         //容错处理--判断当前位置是否有棋子:
         //黑白棋:
         if(qipan[x][y].equals("+ ")){
             if(flag){
                 qipan[x][y]="● ";
             }else{
                 qipan[x][y]="○ ";
             }
             flag=!flag;
         }else{
             System.out.println("当前位置已有棋子,请重新输入坐标!!");
             continue;
         }
         
         //输出棋盘:
          System.out.print(" ");
          for(int i=0;i<10;i++){
             System.out.print(i+" ");
          }
          System.out.println();
          for(int k=0;k<qipan.length;k++){
             System.out.print(k+" ");
             for(int q=0;q<qipan[k].length;q++){
                 System.out.print(qipan[k][q]);
                 }
             System.out.println();
          
          }

判断是否五子连珠:

8个方向,4条线

  1. 上方&下方
  2. 左方&右方
  3. 左斜上&右斜下
  4. 右斜上&左斜下
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//判断是否五子连珠:
          int count=1;
          String currentZiQi=qipan[x][y];//储存当前下的棋子;
         //判断上方:
          for(int k=x-1;k>=0;k--){
             if(qipan[k][y].equals(currentZiQi)){
                 count++;
             }else{
                 break;
             }
             }
          if(count>=5){
            System.out.println(currentZiQi+"获胜!!!");
            break;
          }
         //判断下方:
         for(int k=x+1;k<10;k++){
         if(qipan[k][y].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
         }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }
        count=1;//重置count;
     //判断左边:
        for(int k=y-1;k>=0;k--){
         if(qipan[x][k].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
         }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }
     //判断右边:
        for(int k=y+1;k<10;k++){
         if(qipan[x][k].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
         }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }
        count=1;   
        //判断左上斜边:
        for(int k=x-1,j=y-1;k>=0&&j>=0;k--,j--){
            if(qipan[k][j].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
             }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }
        //右下斜方:
        for(int k=x+1,j=y+1;k<10&&j<10;k++,j++){
            if(qipan[k][j].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
         }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }
        count=1;
        //左下斜方:
        for(int k=x-1,j=y+1;k>=0&&j<10;k--,j++){
            if(qipan[k][j].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
         }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }       
        //右上斜方:
        for(int k=x+1,j=y-1;k<10&&j>=0;k++,j--){
            if(qipan[k][j].equals(currentZiQi)){
          count++;
         }else{
          break;
         }
         }
        if(count>=5){
         System.out.println(currentZiQi+"获胜!!!");
         break;
           }
        count=1;
        }
     }
     
     
  }
 }
 }

总结

到此这篇关于Java控制台版五子棋的简单实现方法的文章就介绍到这了,更多相关Java控制台版五子棋内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/m0_53246877/article/details/113333770

延伸 · 阅读

精彩推荐