CJCoding With Joseph

Countdown by Twos

Count down from 10 to 0, stepping by 2, printing each number on its own line:

10
8
6
4
2
0

Use a negative step (i -= 2) and be sure to include 0.

Expected Output:

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