CJCoding With Joseph
15per day

Do...While Loop: Print Even Numbers

Use a do...while loop to print the even numbers from 2 to 8.

Expected output:
2
4
6
8

Steps:
1. Start with number = 2
2. Use a do...while loop
3. Print the number and increase it by 2
4. Stop after printing 8

Expected Output:

2
4
6
8
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.