Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6. while (true)
  7. {
  8. int n = get_int("Please type in desired height: ");
  9. if (n <1)
  10. {
  11. return
  12. }
  13. else if (n >8)
  14. {
  15. return
  16. }
  17. else
  18. {
  19. continue;
  20. }
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement