- 註冊時間
- 2009-3-21
- 最後登錄
- 2023-6-3
- 主題
- 查看
- 積分
- 92
- 閱讀權限
- 30
- 文章
- 26
- 相冊
- 0
- 日誌
- 0
狀態︰
離線
|
import java.io.*;
public class ooxx {
/**
* @param args
*/
static int a[][]=new int [3][3];
public static void main(String[] args)throws Exception {
// TODO 自動產生方法 Stub
int who=-1;
boolean f=true;
int x=0,y=0;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
while(f){
x=Integer.parseInt(br.readLine());
if(x<1||x>3){
System.out.println("lose");
}
else{
y=Integer.parseInt(br.readLine());
a [x-1][y-1]=who;
display();
if(check()){
System.out.println("win");
f=false;
}
who*=-1;
}
}
}
public static void display(){
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
switch(a[j]){
case(-1):System.out.print("O "); break;
case(0):System.out.print("_ "); break;
case(1):System.out.print("X "); break;
}
}
System.out.println("");
}
}
public static boolean check(){
if(Math.abs(a[0][0]+a[0][1]+a[0][2])==3){return true;}
if(Math.abs(a[1][0]+a[1][1]+a[1][2])==3){return true;}
if(Math.abs(a[2][0]+a[2][1]+a[2][2])==3){return true;}
if(Math.abs(a[0][0]+a[1][0]+a[2][0])==3){return true;}
if(Math.abs(a[0][1]+a[1][1]+a[2][1])==3){return true;}
if(Math.abs(a[0][2]+a[1][2]+a[2][2])==3){return true;}
if(Math.abs(a[0][0]+a[1][1]+a[2][2])==3){return true;}
if(Math.abs(a[0][2]+a[1][1]+a[2][0])==3){return true;}
return false;
}
}
------------分隔線-------------------------------------------------
結果:
O _ _
_ O _
_ _ O
希望可以改到9個格子都可以有圈叉
答案:
X O O
O X O
O O X
希望可以有高手修改到這樣 |
|