Evaluation Lecon 02 - Langage C Avance
Evaluation Lecon 02 - Langage C Avance
Evaluation Lecon 02 - Langage C Avance
https://licence2.uvci.edu.ci/mod/quiz/review.php?attempt=165816 1/3
08/04/2019 EVALUATION LECON 02 - LANGAGE C AVANCE
Question 1
Nous nous proposons d'écrire un programme en langage C qui détermine le nombre de voyelles et
Partiellement
correct de consonnes constituant un mot saisi par l'utilisateur. Remplissez les cases a n que ce
Note de 18,33 sur programme soit correct.
20,00
#include<stdio.h>
#include<conio.h>
main()
char voy[]="aeiouyAEIOUYAE";
char mot[100];
char cons[]="bcdfghjklmnpqrstvwxzBCDFGHJKLMNPQRSTVWXZ";
int i,j,k,cptev,cptec;
cptev=0;
cptec=0;
gets( mot );
for(j=0;j<strlen(voy);j++)
if(mot[i]==voy[j])
cptev ++;
cptec++;
https://licence2.uvci.edu.ci/mod/quiz/review.php?attempt=165816 2/3
08/04/2019 EVALUATION LECON 02 - LANGAGE C AVANCE
printf("Il compte %d voyelle(s) et %d consonne(s)\n", cptev ,
cptev );
https://licence2.uvci.edu.ci/mod/quiz/review.php?attempt=165816 3/3