โ Back to Loops
Question 23
While Loop: Countdown
While Loop: Countdown
Use a while loop to count down from 5 to 1, printing one number per line. Expected output: 5 4 3 2 1 Steps: 1. Create a variable called count and set it to 5 2. Use a while loop that runs while count is at least 1 3. Print count, then decrease it by 1
Expected Output:
5 4 3 2 1
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.