CJCoding With Joseph

Repeat a Word Three Times

Print the word Hello three times, each on its own line, using a loop:

Hello
Hello
Hello

Use a loop that runs 3 times instead of writing three separate printf calls.

Expected Output:

Hello
Hello
Hello
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.