Advertisement
Liubov

mari

Dec 13th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6. int j;
  7. printf("height: ");
  8. do
  9. {
  10.  
  11. j = get_int();
  12.  
  13. }
  14. while(j >=0 && j<24);
  15. if(j<0 || j>=24)
  16. {
  17. printf("height:\n");
  18. }
  19.  
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement