mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 11:18:07 +00:00
20 lines
351 B
C++
20 lines
351 B
C++
// Auteur : Franck ALBARET
|
|
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
int main (void)
|
|
{
|
|
int i=0;
|
|
int cpt=0;
|
|
char Texte [60];
|
|
puts ("Veuillez taper votre texte :\n");
|
|
gets(Texte);
|
|
while(Texte[i]!='\0')
|
|
{
|
|
if (Texte[i]=='a')
|
|
cpt=cpt+1;
|
|
i=i+1;
|
|
}
|
|
printf ("\n\n Le nombre de A est %i\n",cpt);
|
|
return 0;
|
|
}
|