41 lines
712 B
C
41 lines
712 B
C
|
#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;
|
||
|
}
|