马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
话不多说,直接上代码package hello;
import java.util.Scanner;
public class Hello {
public static void main(String[] args) {
// 初始化
Scanner in = new Scanner(System.in);
final int SIZE = 3;
int numofX = 0;
int numofo = 0;
int[][] board = new int[SIZE][SIZE]; //3*3的矩阵
boolean gotResult = false;
//读入矩阵
for(int i = 0; i < board.length;i++)
{
for(int j = 0; j <board[i].length;j++)
{
board[i][j] = in.nextInt();
}
}
//打印矩阵
for(int i = 0; i < board.length;i++)
{
for(int j = 0; j <board[i].length;j++)
{
System.out.print(board[i][j]+" ");
}
System.out.println();
}
//检查矩阵--行
if(!gotResult)
{
numofX = 0;
numofo = 0;
for(int i = 0;i<board.length;i++)
{
for(int j = 0 ;j <board[i].length;j++)
{
if(board[i][j] == 1)
{
numofX ++;
}
else if(board[i][j] == 0)
{
numofo ++;
}
}
if(numofX == SIZE || numofo == SIZE)
{
gotResult = true;
break;
// System.out.println("行");
}
}
}
//检查矩阵--列
if(!gotResult)
{
numofX = 0;
numofo = 0;
for(int i = 0;i<board.length;i++)
{
for(int j = 0 ;j <board[i].length;j++)
{
if(board[j][i] == 1)
{
numofX ++;
}
else if(board[i][j] == 0)
{
numofo ++;
}
}
if(numofX == SIZE || numofo == SIZE)
{
gotResult = true;
break;
// System.out.println("列");
}
}
}
//检查矩阵--对角线
if(!gotResult)
{
numofX = 0;
numofo = 0;
for(int i = 0 ;i <board.length;i++)
{
if(board[i][SIZE - i -1] == 1)
{
numofX ++;
}
else if(board[i][SIZE - i -1] == 0)
{
numofo ++;
}
}
if(numofX == SIZE || numofo == SIZE)
{
gotResult = true;
// System.out.println("对角线");
}
}
if(gotResult)
{
if(numofX == SIZE)
{
System.out.print("执"+1+":胜利");
}
else if(numofo == SIZE)
{
System.out.print("执"+0+":胜利");
}
}
}
}
|