Implémentation total de la prise en charge en simultané des mots a 3 et 4 lettres.

This commit is contained in:
2025-12-05 23:52:58 -05:00
parent 7b6611065c
commit 24cd682bdb
4 changed files with 41 additions and 34 deletions

View File

@@ -25,11 +25,13 @@ void fermerFichier(fstream& monFlux);
void delai();
void curseur(bool interrupteur);
int nombreLigneFichier(fstream& monFlux);
// Mot
string choisirMot(string nomFichier, int maximum);
string choisirMot(string nomFichier);
string goToLine(fstream& monFlux, int numeroLigne);
void effectuerTour(int nbLettre);
void effectuerTour();
bool dansListe(string motPlayer);
bool comparerMot(fstream& monFlux, string motPlayer, int numeroLigne);
int lettreDansMot(string motRandom, string motPlayer, int nbLettre, int i);