Les répétitions
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Exercice 3
Les nombres aléatoires
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int main() {
//Initialise la séquence de nombres pseudo-aléatoires
srand(time(NULL));
//rand() renvoi un nombre pseudo-aléatoire.
printf("Nombre aléatoire 1 : %d\n", rand());
printf("Nombre aléatoire 2 : %d\n", rand());
printf("Nombre aléatoire 3 : %d\n", rand());
return 0;
}
Enter to Rename, Shift+Enter to Preview
Devinez le nombre !
Ecrire un programme qui …
- génère un nombre entier compris entre 1 et 1000.
- offre à l’utilisateur 10 essais pour trouver ce nombre. Les indications « c’est plus » ou « c’est moins » sont fournies à l’utilisateur pour toute tentative infructueuse.
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content