Add files via upload
This commit is contained in:
parent
56eef89161
commit
d8a578f029
Binary file not shown.
@ -6,129 +6,126 @@ import java.util.Scanner;
|
|||||||
public class Programme {
|
public class Programme {
|
||||||
|
|
||||||
|
|
||||||
Boolean gagnant= false;
|
Boolean gagnant = false;
|
||||||
int cases;
|
int cases;
|
||||||
char X='X';
|
char X = 'X';
|
||||||
char O='O';
|
char O = 'O';
|
||||||
Scanner scan=new Scanner(System.in);
|
Scanner scan = new Scanner(System.in);
|
||||||
char joueurActuel;
|
char joueurActuel;
|
||||||
//Dessiner une grille
|
String saisir;
|
||||||
char[]grid=
|
// Dessiner une grille
|
||||||
{'1','2','3',
|
char[] grid = { '1', '2', '3', '4', '5', '6', '7', '8', '9', };
|
||||||
'4','5','6',
|
|
||||||
'7','8','9',
|
public void montrerLaGrille(char[] grid) {
|
||||||
};
|
System.out.println("[" + grid[0] + '|' + grid[1] + '|' + grid[2] + ']');
|
||||||
|
System.out.println("[" + grid[3] + '|' + grid[4] + '|' + grid[5] + ']');
|
||||||
public void montrerLaGrille(char[]grid) {
|
System.out.println("[" + grid[6] + '|' + grid[7] + '|' + grid[8] + ']');
|
||||||
System.out.println("["+ grid[0]+'|'+grid[1]+'|'+grid[2]+']');
|
System.out.println("");
|
||||||
System.out.println("["+ grid[3]+'|'+grid[4]+'|'+grid[5]+']');
|
|
||||||
System.out.println("["+ grid[6]+'|'+grid[7]+'|'+grid[8]+']');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void gagnant(char[]grid,char joueurActuel) {
|
public void gagnant(char[] grid, char joueurActuel) {
|
||||||
montrerLaGrille(grid);
|
montrerLaGrille(grid);
|
||||||
System.out.println("Le joueur qui a les "+joueurActuel+"a gagné!");
|
System.out.println("Le joueur qui a les " + joueurActuel + " a gagné!");
|
||||||
System.exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isGagnant () {
|
|
||||||
//Vérifier s'il y a 3 elements alignés en vertical horizontal ou diagonale
|
|
||||||
//On verifie les lignes
|
|
||||||
for(int i=0;i<3;++i){
|
|
||||||
if (grid[i*3+0]==joueurActuel && grid[i*3+1]==joueurActuel && grid[i*3+2]==joueurActuel)
|
|
||||||
gagnant(grid, joueurActuel);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//on verifie les colonnes
|
|
||||||
for(int i=0;i<3;i++){
|
|
||||||
if (grid[i]==joueurActuel && grid[i+3]==joueurActuel && grid[i+6]==joueurActuel)
|
|
||||||
gagnant(grid, joueurActuel);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//on verifie 1ere diagonale
|
|
||||||
for(int i=0;i<3;++i){
|
|
||||||
if (grid[0]==joueurActuel && grid[4]==joueurActuel && grid[8]==joueurActuel) {
|
|
||||||
gagnant(grid, joueurActuel);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//on verifie 2eme diagonale
|
|
||||||
for(int j=0;j<3;++j){
|
|
||||||
if (grid[2]==joueurActuel && grid[4]==joueurActuel && grid[6]==joueurActuel) {
|
|
||||||
gagnant(grid, joueurActuel);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return gagnant;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void isGagnant() {
|
||||||
|
|
||||||
public Programme() {
|
|
||||||
|
|
||||||
|
// Vérifier s'il y a 3 elements alignés en vertical horizontal ou diagonale
|
||||||
// début du jeu
|
// On verifie les lignes
|
||||||
|
for (int i = 0; i < 3; ++i) {
|
||||||
// tirer au hazard quel joueur commence
|
if (grid[i * 3 + 0] == joueurActuel && grid[i * 3 + 1] == joueurActuel && grid[i * 3 + 2] == joueurActuel)
|
||||||
char nom[]= {this.O,this.X};
|
gagnant = true;
|
||||||
Random tirage=new Random();
|
gagnant(grid, joueurActuel);
|
||||||
int n=tirage.nextInt(nom.length);
|
|
||||||
joueurActuel=nom[n];
|
|
||||||
System.out.println("Le joueur qui joue est "+nom[n]);
|
|
||||||
|
|
||||||
//imprimer la grille
|
|
||||||
|
|
||||||
do{
|
|
||||||
montrerLaGrille(grid);
|
|
||||||
// le joueur 1 choisit une case : entre 1 et 9 et non cochée.
|
|
||||||
// si caractere incorrect reposer la question
|
|
||||||
|
|
||||||
System.out.println(joueurActuel+ " choisis un numéro de case libre entre 1 et 9");
|
|
||||||
String cocher=scan.nextLine();
|
|
||||||
try {
|
|
||||||
cases =Integer.parseInt(cocher);
|
|
||||||
if ((1<=cases) && (cases<=9) && (grid[cases-1]!=X) && (grid[cases-1]!=O));
|
|
||||||
break;
|
break;
|
||||||
}catch (Exception cases){cases.printStackTrace();}
|
}
|
||||||
|
|
||||||
//Mettre le bon caractere dans la case choisie
|
// on verifie les colonnes
|
||||||
grid[cases-1]=joueurActuel;
|
for (int i = 0; i < 3; i++) {
|
||||||
isGagnant();
|
if (grid[i] == joueurActuel && grid[i + 3] == joueurActuel && grid[i + 6] == joueurActuel)
|
||||||
// si toutes les cases sont pleines et qu'iln'y a pas 3 pions d'alligné match nul
|
gagnant = true;
|
||||||
for (int k=0;k<9;++k){
|
gagnant(grid, joueurActuel);
|
||||||
if (grid[k]==X || grid[k]==O)
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// on verifie 1ere diagonale
|
||||||
|
for (int i = 0; i < 3; ++i) {
|
||||||
|
if (grid[0] == joueurActuel && grid[4] == joueurActuel && grid[8] == joueurActuel)
|
||||||
|
gagnant = true;
|
||||||
|
gagnant(grid, joueurActuel);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// on verifie 2eme diagonale
|
||||||
|
for (int j = 0; j < 3; ++j) {
|
||||||
|
if (grid[2] == joueurActuel && grid[4] == joueurActuel && grid[6] == joueurActuel)
|
||||||
|
gagnant = true;
|
||||||
|
gagnant(grid, joueurActuel);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// si toutes les cases sont pleines et qu'iln'y a pas 3 pions d'alligné match
|
||||||
|
// nul
|
||||||
|
for (int k = 0; k < 8; ++k) {
|
||||||
|
if (grid[k] == X || grid[k] == O)
|
||||||
|
gagnant = true;
|
||||||
System.out.println("Match nul!!");
|
System.out.println("Match nul!!");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}while(gagnant==false);// si non demander à l'autre joueur de choisir une case libre
|
|
||||||
if(joueurActuel==X)
|
|
||||||
joueurActuel=O;
|
|
||||||
else
|
|
||||||
joueurActuel=X;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public Programme() {
|
||||||
|
|
||||||
|
// début du jeu
|
||||||
|
|
||||||
/**
|
// tirer au hazard quel joueur commence
|
||||||
|
char nom[] = { this.O, this.X };
|
||||||
|
Random tirage = new Random();
|
||||||
|
int n = tirage.nextInt(nom.length);
|
||||||
|
joueurActuel = nom[n];
|
||||||
|
System.out.println("Le joueur qui joue est " + nom[n]);
|
||||||
|
|
||||||
|
// imprimer la grille
|
||||||
|
|
||||||
|
do { montrerLaGrille(grid);
|
||||||
|
// le joueur 1 choisit une case : entre 1 et 9 et non cochée.
|
||||||
|
// si caractere incorrect reposer la question
|
||||||
|
while (true) {
|
||||||
|
System.out.print(joueurActuel + " choisis un numéro de case libre entre 1 et 9");
|
||||||
|
saisir = scan.nextLine();
|
||||||
|
try {
|
||||||
|
cases = Integer.parseInt(saisir);
|
||||||
|
if (cases >= 1 && cases <= 9 && grid[cases - 1] != X && grid[cases - 1] != O)
|
||||||
|
break;
|
||||||
|
} catch (Exception e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Mettre le bon caractere dans la case choisie
|
||||||
|
grid[cases - 1] = joueurActuel;
|
||||||
|
|
||||||
|
isGagnant();
|
||||||
|
}
|
||||||
|
|
||||||
|
while(gagnant == false); // si non demander à l'autre joueur de choisir une case libre
|
||||||
|
if (joueurActuel == X)
|
||||||
|
joueurActuel = O;
|
||||||
|
else
|
||||||
|
joueurActuel = X;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
* Main
|
* Main
|
||||||
*/
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
/**TODO Auto-generated method stub*/
|
/** TODO Auto-generated method stub */ /**TODO Auto-generated method stub*/
|
||||||
Programme morpion=new Programme();
|
Programme programme = new Programme();
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user