Examples of jouer()


Examples of be.steformations.javabc.pendu.Joueur.jouer()

    JoueurMaitre maitre = new JoueurMaitreConsoleImpl();
    Joueur joueur = new JoueurConsoleImpl();
    Potence jeu = new PotenceImpl(maitre.fabriqueMotSecret());
    while(!jeu.isGagne() && !jeu.isPerdu()){
      try {
        jeu.verifieLettre(joueur.jouer(jeu));
      } catch (LettreDejaEntreeException e) {
        System.out.println("Lettre déjà entrée");
      } catch (NonAZException e) {
        System.out.println("Entrez une lettre entre a et z");
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.