Guest User

Untitled

a guest
Oct 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include <cc50.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <time.h>
  5.  
  6. int
  7. main(void)
  8. {
  9. srand(time(NULL));
  10. int skittles = rand() % 1024;
  11. printf("%d\n", skittles);
  12. printf("Oi, sou a maquina falante de skittles, acerte quantas balas eu $
  13.  
  14. do
  15. {
  16. int tentativa = getint();
  17. printf("Errou, tente novamente!\n");
  18. }while(tentativa != skittles);
  19. }
Add Comment
Please, Sign In to add comment