exo devinette
This commit is contained in:
parent
ce8a5aca76
commit
57c4f1aefa
40
Exemples/devinette.c
Normal file
40
Exemples/devinette.c
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <time.h> /* pour utiliser la fonction time */
|
||||||
|
|
||||||
|
#define MAX 101
|
||||||
|
#define MAX_RECH 8
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
int compteur = 0;
|
||||||
|
int nb_aleatoire;
|
||||||
|
int lu;
|
||||||
|
|
||||||
|
/* génération d'un nombre aléatoire entre 0 et 100 (compris) */
|
||||||
|
srand(time(NULL));
|
||||||
|
nb_aleatoire = rand()%MAX;
|
||||||
|
|
||||||
|
|
||||||
|
while (compteur < MAX_RECH) {
|
||||||
|
printf("Entrer un entier compris entre 0 et 100 : ");
|
||||||
|
scanf("%d", &lu);
|
||||||
|
|
||||||
|
if (lu == nb_aleatoire) {
|
||||||
|
printf("Yes!\n");
|
||||||
|
compteur = MAX_RECH + 10;
|
||||||
|
}
|
||||||
|
if (lu < nb_aleatoire) {
|
||||||
|
printf("+\n");
|
||||||
|
}
|
||||||
|
if (lu > nb_aleatoire) {
|
||||||
|
printf("-\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
compteur = compteur + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (compteur == MAX_RECH)
|
||||||
|
printf("Perdu\n");
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user