CJCoding With Joseph
15per day

Do...While Loop: Print 3 Times

Use a do...while loop to print "Practice makes progress" exactly 3 times.

Expected output:
Practice makes progress
Practice makes progress
Practice makes progress

Steps:
1. Create a counter variable starting at 1
2. Use a do...while loop
3. Print the message each time and increase the counter

Expected Output:

Practice makes progress
Practice makes progress
Practice makes progress
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.