Evaluation Lecon 02 - Langage C Avance

Télécharger au format pdf ou txt
Télécharger au format pdf ou txt
Vous êtes sur la page 1sur 3

08/04/2019 EVALUATION LECON 02 - LANGAGE C AVANCE

 Français (fr) TRAORE CHEICK OMAR 

Rechercher un cours  (Rechercher un cours)

  Mes cours  ALG2103-2 - LANGAGE C AVANCE  SEMAINE 2 : LES CHAINES DE CARACTERES 

EVALUATION LECON 02 - LANGAGE C AVANCE

Commencé le dimanche 27 janvier 2019, 16:30


État Terminé
Terminé le dimanche 27 janvier 2019, 16:53
Temps mis 23 min 7 s
Note 18,33 sur 20,00 (92%)

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>

#include< string.h >

main()

char voy[]="aeiouyAEIOUYAE";

char mot[100];

char cons[]="bcdfghjklmnpqrstvwxzBCDFGHJKLMNPQRSTVWXZ";

int i,j,k,cptev,cptec;

cptev=0;

cptec=0;

printf("Saisissez un mot svp!\n");

gets( mot );

for (i=0;i<strlen( mot );i++)

for(j=0;j<strlen(voy);j++)

if(mot[i]==voy[j])

cptev ++;

for(k=0;k<strlen( cons );k++)

if (mot[i]== cons [k])

cptec++;

printf("Le mot saisi est %s\n", mot );

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

Vous aimerez peut-être aussi