Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <limits.h>
- int main()
- {
- int nb_or = rand() % 100 + 1;
- int x;
- printf("Enter an integer: ");
- scanf("%d", &x);
- printf("You entered: %d \n", x);
- if(x ==nb_or)
- {
- printf("Vous avez trouvez le nombre d'or :");
- }
- if(x < nb_or)
- {
- printf(" x est inférieur au nombre d'or :");
- }
- if(x > nb_or)
- {
- printf(" x est supérieur au nombre d'or :");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement