Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cs50.h>
- #include <stdio.h>
- int main(void)
- {
- //Prompts user for height
- int height;
- do
- {
- height = get_int("Height: ");
- }
- while (height < 1 || height > 8);
- }
- #include <stdio.h>
- int main()
- {
- //Example of current for loop knowledge
- for (int i = 0; i < 5; i++)
- {
- printf(“hello\n”);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement