โ Back to Loops
Question 205
Countdown by Twos
Countdown by Twos
Count down from10to0, stepping by2, printing each number on its own line: 10 8 6 4 2 0 Use a negative step (i -= 2) and be sure to include0.
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.