15 lines
291 B
Java
15 lines
291 B
Java
//HORVILLE Ewen Groupe N°4
|
|
|
|
public class Puissance {
|
|
public static void main(String[] args) {
|
|
Grille g = new Grille();
|
|
|
|
g.jouer(3);
|
|
g.jouer(4);
|
|
g.jouer(4);
|
|
g.jouer(6);
|
|
g.jouer(4);
|
|
g.jouer(6);
|
|
System.out.println(g);
|
|
}
|
|
} |