TP
This commit is contained in:
parent
f23461e2cb
commit
ab52c40223
41
DEV1.1/TP08/TP08_reponses.txt
Normal file
41
DEV1.1/TP08/TP08_reponses.txt
Normal file
@ -0,0 +1,41 @@
|
||||
------- TP08 : Boucles (suite) -------
|
||||
|
||||
1.
|
||||
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
|
||||
int main(void) {
|
||||
int aleatoire;
|
||||
int i;
|
||||
int entree;
|
||||
int VALEUR_MAX;
|
||||
int NB_TENTATIVES;
|
||||
VALEUR_MAX = 100;
|
||||
NB_TENTATIVES = 5;
|
||||
srand(time(NULL));
|
||||
aleatoire = (rand() % VALEUR_MAX);
|
||||
for (i = 1; i <= NB_TENTATIVES; i++) {
|
||||
printf("Entrez un nombre : ");
|
||||
scanf("%d", &entree);
|
||||
if (entree < aleatoire) {
|
||||
printf("+\n");
|
||||
}
|
||||
else if (entree > aleatoire) {
|
||||
printf("-\n");
|
||||
}
|
||||
else {
|
||||
printf("Bonne réponse");
|
||||
}
|
||||
}
|
||||
if (aleatoire != entree) {
|
||||
printf("Perdu");
|
||||
}
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
-----------------------
|
||||
|
||||
2.
|
||||
|
31
DEV1.1/TP08/tests.c
Normal file
31
DEV1.1/TP08/tests.c
Normal file
@ -0,0 +1,31 @@
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
|
||||
int main(void) {
|
||||
int aleatoire;
|
||||
int i;
|
||||
int entree;
|
||||
int VALEUR_MAX;
|
||||
int NB_TENTATIVES;
|
||||
VALEUR_MAX = 100;
|
||||
NB_TENTATIVES = 5;
|
||||
srand(time(NULL));
|
||||
aleatoire = (rand() % VALEUR_MAX);
|
||||
for (i = 1; i <= NB_TENTATIVES; i++) {
|
||||
printf("Entrez un nombre : ");
|
||||
scanf("%d", &entree);
|
||||
if (entree < aleatoire) {
|
||||
printf("+\n");
|
||||
}
|
||||
else if (entree > aleatoire) {
|
||||
printf("-\n");
|
||||
}
|
||||
else {
|
||||
printf("Bonne réponse");
|
||||
}
|
||||
}
|
||||
if (aleatoire != entree) {
|
||||
printf("Perdu");
|
||||
}
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Loading…
Reference in New Issue
Block a user