Compare commits

..

1 Commits

Author SHA1 Message Date
e6ed34528d Correction bug save_file 2024-10-25 18:50:24 +02:00
3 changed files with 4 additions and 33 deletions

View File

@ -1,23 +0,0 @@
# TD3_DEV51_Qualite_Algo
###### par SCHIED Killian, LANDRIN Dylan et ROCHER Léo
## Exercice 4
### Complexité cyclomatique
Pour la complexité cyclomatique de chaque fonction nous avons calculé ceci :
| Fonction | Complexité Cyclomatique |
|---------------------------------------|-------------------------|
| `display_hangman(int tries)` | 7 |
| `save_party(char *status, const char *good_word, char try[])` | 3 |
| `sig_handler(int signum)` | 2 |
| `getWordByLength()` | 3 |
| `main()` | 13 |
### Utilisation de gprof
Le programme étant petit et fait appel à peu de fonction, l'utilisation de gprof ne nous permet pas d'obtenir d'information utile.
### Conclusion sur la qualité du code
Le code est fonctionnel et globalement efficace. On peut améliorer la quantité de commentaire et trouver un moyen de réduire la complexité cyclomatique du main.

View File

@ -54,12 +54,13 @@ void save_party(char * status, const char * good_word, char try[], int cpt_try,
char * date;
date = ctime(&t); //stock the current time format as: day, month, number of the month, hour, year
FILE* fichier = fopen("save_party.txt", "a");
FILE* fichier = fopen("save_party.txt", "w");
if (fichier != NULL)
{
fputs("Date and time: ", fichier);
fputs(date,fichier);
fputs("\n",fichier);
fputs("Status: ", fichier);
fputs(status,fichier);
@ -80,7 +81,6 @@ void save_party(char * status, const char * good_word, char try[], int cpt_try,
fputc(good_try[i],fichier);
}
fputs("\n",fichier);
fputs("\n",fichier);
fclose(fichier); // Close the opened file
}

View File

@ -1,12 +1,6 @@
Date and time: Fri Oct 25 22:29:13 2024
Date and time: Fri Oct 25 18:47:28 2024
Status: Lose
Good word: koala
tried letters: zertyu
guessed letters: a
Date and time: Fri Oct 25 22:29:40 2024
Status: Win
Good word: code
tried letters: a
guessed letters: code