Advertisement
Guest User

Untitled

a guest
Jan 20th, 2023
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6. //Prompts user for height
  7. int height;
  8. do
  9. {
  10. height = get_int("Height: ");
  11. }
  12. while (height < 1 || height > 8);
  13. }
  14.  
  15.  
  16. #include <stdio.h>
  17.  
  18. int main()
  19. {
  20. //Example of current for loop knowledge
  21. for (int i = 0; i < 5; i++)
  22. {
  23. printf(“hello\n”);
  24. }
  25. }
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement