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
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main ()
{
int test;
int Nbentre = 0;
const int MAX = 100, MIN = 1;
srand(time(NULL));
test = (rand() % (MAX - MIN + 1)) + MIN;
do
{
system("CLS");
printf(" ===== Jeu du plus ou moins ====");
printf("\n\nNombre choisit ? : (%d)\n", Nbentre);
scanf("%d", &Nbentre); // <- Etape bypassé lors d'une insertion
// incorrect (grgr ou 3.25)
if (Nbentre > test)
{
printf("trop grand !\n");
system("PAUSE");
}
else if (Nbentre < test)
{
printf("trop petit !\n");
system("PAUSE");
}
else if ( Nbentre == test)
{
printf("tout juste !\n");
}
else
{
printf("Eh oh c'est quoi sa !!!\n");
system("PAUSE");
}
}while (Nbentre != test);
return 0;
} |
Partager