• 大小: 2KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: Java
  • 标签: java  

资源简介

井字棋控制台界面开发,较为简单的一个小游戏,推荐java新手使用。

资源截图

代码片段和文件信息

import java.util.Scanner;
public class jingZiQi {
static int [][]X =new int[3][3];//储存X数值
static int [][]O =new int[3][3];//储存O的数值
static int row;//输入行坐标
static int col;//输入的列坐标


public static void main(String []args){
//显示棋盘
showBoard();
//开始游戏
startGame();
}
public static void showBoard(){
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
if(X[i][j]==1){
System.out.print(“X|“);
}else if(O[i][j]==1){
System.out.print(“O|“);
}else{
System.out.print(“ |“);
}
}
System.out.println();
}
}
//显示棋盘
public static void startGame(){
String roleX=“X“;
String roleO=“O“;//角色名
//判断输赢的boolean
boolean flag=false;
do{
//先开始游戏
draw(roleXX);
flag=isWin(roleXXrowcol);
if(flag==true){
System.out.println(roleX+“取胜“);
return;
}
draw(roleOO);
flag=isWin(roleOOrowcol);
if(flag==true){
System.out.println(roleO+“取胜“);
return;
}
}while(flag==false);
}
public static void draw(String roleint [][]XO){
@SuppressWarnings(“resource“)
Scanner sc = new Scanner(System.in);
int i=0;

do{
System.out.println(role+“请输入坐标点(0 0)“);
row =sc.nextInt();
col =sc.nextInt();

if(X[row][col]!=0||O[row][col]!=0){
System.out.println(“该位置已画...“);
i++;
}else{
XO[row][col]=1;
i=0;
}
showBoard();

}while(i>0);
}
public static boolean isWin(String roleint [][]XOint rowint col){
int num1=0;
int num2=0;
int num3=0;
int num4=0;

for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
if(row==i){
num2+=XO[row][j];
}
if(col==j){
num1+=XO[i][col];
}
if(row==col){
if(i==j){
num3+=XO[i][j];
}
}
if(row==(2-col)){
if(i==(2-j)){
num4+=XO[i][j];
}
}
//拓展:平局
}
}
if(num1==3||num2==3||num3==3||num4==3){
return true;
}
return false;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2934  2018-12-04 18:42  Test01.java

     文件       2107  2018-12-03 19:46  jingZiQi.java

----------- ---------  ---------- -----  ----

                 5041                    2


评论

共有 条评论