1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| #include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
const long max=100,min=1;
long inconnu=0,nombreMystere=0,compteur=0;
char choix;
srand(time(NULL));
nombreMystere = (rand() % (max - min + 1)) + min;
do
{
do{
printf("QUEL EST LE NOMBRE ? \n");
scanf("%ld", &inconnu);
if (inconnu<nombreMystere)
{
printf("C'est plus\n");
compteur++;
}
else if (inconnu>nombreMystere)
{
printf("C'est moins\n");
compteur++;
}
else
{
printf("Bravo vous avez gagne en %ld coup\n", compteur);
}
}
while (inconnu!=nombreMystere);
inconnu=0,nombreMystere=0,compteur=0;
printf("voulez vous continuer?(o/n) ");
scanf("%c", &choix);
}
while ((choix =='o')&&( choix=='n') );
return 0;
} |
Partager