TD3_DEV51_Qualite_Algo/pendu.c

127 lines
4.0 KiB
C
Raw Normal View History

2024-10-14 18:41:58 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
2024-10-14 18:47:11 +02:00
#define MAX_WORDS 14
2024-10-14 18:41:58 +02:00
#define MAX_TRIES 6
const char *words[MAX_WORDS] = {
"programmation",
"ordinateur",
"langage",
"jeu",
2024-10-14 18:47:11 +02:00
"algorithmique",
"fontainebleau",
"koala",
"anticonstitutionnellement",
"code",
"canard",
"gyroscope",
"periclitation",
"susurrer",
"eclesiastique"
2024-10-14 18:41:58 +02:00
};
void display_hangman(int tries) {
switch (tries) {
case 0: printf(" ----\n | |\n |\n |\n |\n |\n--------\n"); break;
case 1: printf(" ----\n | |\n | O\n |\n |\n |\n--------\n"); break;
case 2: printf(" ----\n | |\n | O\n | |\n |\n |\n--------\n"); break;
case 3: printf(" ----\n | |\n | O\n | /|\n |\n |\n--------\n"); break;
case 4: printf(" ----\n | |\n | O\n | /|\\\n |\n |\n--------\n"); break;
case 5: printf(" ----\n | |\n | O\n | /|\\\n | /\n |\n--------\n"); break;
case 6: printf(" ----\n | |\n | O\n | /|\\\n | / \\\n |\n--------\n"); break;
}
}
2024-10-15 11:34:40 +02:00
void choose_words(int max_length, char *final_word) {
int total_length = 0;
int chosen[MAX_WORDS] = {0}; // Pour suivre les mots déjà choisis
int attemps = 0;
int max_attemps = 2 * MAX_WORDS;
while (total_length < max_length && attemps < max_attemps) {
int index = rand() % MAX_WORDS;
// Si ce mot est déjà choisi ou dépasse la longueur maximale, on l'ignore
if (chosen[index] || total_length + strlen(words[index]) + (total_length > 0 ? 1 : 0) > max_length) {
attemps++;
continue;
}
// Si c'est le premier mot, on le copie directement, sinon on ajoute un espace et le mot
if (total_length > 0) {
strcat(final_word, " "); // Ajouter un espace entre les mots
}
strcat(final_word, words[index]);
total_length += strlen(words[index]) + (total_length > 0 ? 1 : 0); // Inclure l'espace si ce n'est pas le premier mot
chosen[index] = 1; // Marquer ce mot comme choisi
}
}
2024-10-14 18:41:58 +02:00
int main() {
srand(time(NULL));
2024-10-15 11:34:40 +02:00
// Demander la taille maximale pour le mot
int max_length;
printf("Choisissez la taille maximale du mot à deviner : ");
scanf("%d", &max_length);
// Créer la chaîne finale à deviner, basée sur la taille choisie
char final_word[256] = ""; // Un buffer assez grand pour contenir plusieurs mots
// Choisir un ou plusieurs mots pour constituer le mot final
choose_words(max_length, final_word);
int word_length = strlen(final_word);
2024-10-14 18:41:58 +02:00
char guessed[word_length];
int tries = 0;
int guessed_correctly = 0;
2024-10-15 11:34:40 +02:00
// Initialiser la chaîne des lettres devinées avec des '_'
2024-10-14 18:41:58 +02:00
for (int i = 0; i < word_length; i++) {
2024-10-15 11:34:40 +02:00
guessed[i] = (final_word[i] == ' ') ? ' ' : '_'; // Conserver les espaces dans guessed
2024-10-14 18:41:58 +02:00
}
guessed[word_length] = '\0';
while (tries < MAX_TRIES && guessed_correctly < word_length) {
printf("\nMot à deviner : %s\n", guessed);
display_hangman(tries);
char guess;
printf("Entrez une lettre : ");
scanf(" %c", &guess);
int found = 0;
2024-10-15 11:34:40 +02:00
// Vérifier si la lettre devinée est dans le mot final
2024-10-14 18:41:58 +02:00
for (int i = 0; i < word_length; i++) {
2024-10-15 11:34:40 +02:00
if (final_word[i] == guess && guessed[i] == '_') {
guessed[i] = guess;
2024-10-14 18:41:58 +02:00
found = 1;
}
}
2024-10-15 11:34:40 +02:00
// Le comptage des lettres correctes doit exclure les espaces
guessed_correctly = 0;
for (int i = 0; i < word_length; i++) {
if (guessed[i] != '_' && final_word[i] != ' ') {
guessed_correctly++;
}
}
2024-10-14 18:41:58 +02:00
if (!found) {
tries++;
}
}
if (guessed_correctly == word_length) {
2024-10-15 11:34:40 +02:00
printf("Félicitations ! Vous avez deviné le mot : %s\n", final_word);
2024-10-14 18:41:58 +02:00
} else {
2024-10-15 11:34:40 +02:00
printf("Désolé, vous avez perdu. Le mot était : %s\n", final_word);
2024-10-14 18:41:58 +02:00
display_hangman(MAX_TRIES);
}
return 0;
}