Advertisement
mario_mos

randor

Jul 24th, 2023
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. int main()
  5. {
  6. int nb_or = rand() % 100 + 1;
  7. int x;
  8. printf("Enter an integer: ");
  9. scanf("%d", &x);
  10. printf("You entered: %d \n", x);
  11.  
  12. if(x ==nb_or)
  13. {
  14. printf("Vous avez trouvez le nombre d'or :");
  15. }
  16. if(x < nb_or)
  17. {
  18. printf(" x est inférieur au nombre d'or :");
  19. }
  20. if(x > nb_or)
  21. {
  22. printf(" x est supérieur au nombre d'or :");
  23. }
  24.  
  25.  
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement