Commit 6262470e0bb0c3a8ef68147efc72de1125e4bccc
1 parent
f5d30753
modification projetfinalaccent2.c
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
projetfinalaccent2.c
... | ... | @@ -80,13 +80,13 @@ void remplir_dico(FILE* fd, struct node tab_arbre_prcp[]) { |
80 | 80 | localisationArbre = &tab_arbre_prcp[indice].listeFils; |
81 | 81 | if(indice == -1) { |
82 | 82 | wprintf(L"Erreur remplissage dico : L'un des caracteres n'est pas une lettre\n"); |
83 | - wprintf(L"Mot : %ls incorrect\n", motLu); | |
83 | + wprintf(L"Mot : '%ls' incorrect\n", motLu); | |
84 | 84 | estUneLettre = 0; |
85 | 85 | } |
86 | 86 | } |
87 | 87 | else { |
88 | 88 | wprintf(L"Erreur remplissage dico : L'un des caracteres n'est pas une lettre\n"); |
89 | - wprintf(L"Mot : %ls incorrect\n", motLu); | |
89 | + wprintf(L"Mot : '%ls' incorrect\n", motLu); | |
90 | 90 | estUneLettre = 0; |
91 | 91 | } |
92 | 92 | while((motLu[i] != '\0') && (estUneLettre == 1)) { |
... | ... | @@ -145,7 +145,7 @@ void correction_txt(FILE* fd, struct node tab_arbre_prcp[]) { |
145 | 145 | localisationArbre = test_mot(motLu[i], localisationArbre, &verif); |
146 | 146 | } |
147 | 147 | if(verif == 0) { |
148 | - wprintf(L"Mot %ls non present dans le dicitonnaire.\n", motLu); | |
148 | + wprintf(L"Mot '%ls' non present dans le dicitonnaire.\n", motLu); | |
149 | 149 | cptfaute += 1; |
150 | 150 | } |
151 | 151 | } |
... | ... | @@ -187,9 +187,9 @@ void correction_mot(struct node tab_arbre_prcp[]) { |
187 | 187 | localisationArbre = test_mot(motLu[i], localisationArbre, &verif); |
188 | 188 | } |
189 | 189 | if(verif == 0) { |
190 | - wprintf(L"Mot : %ls non present dans le dicitonnaire.\n", motLu); | |
190 | + wprintf(L"Mot : '%ls' non present dans le dicitonnaire.\n", motLu); | |
191 | 191 | } |
192 | - else wprintf(L"Mot : %ls correct\n", motLu); | |
192 | + else wprintf(L"Mot : '%ls' correct\n", motLu); | |
193 | 193 | } |
194 | 194 | } |
195 | 195 | ... | ... |