โ Back to Loops
Question 329
Count Down by Twos 10 to 0
Count Down by Twos 10 to 0
Use a loop to print numbers from 10 down to 0, decreasing by 2 each step, one per line. The exact output is: 10 8 6 4 2 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 (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.