โ Back to Loops
Question 213
Skip the Number 3
Skip the Number 3
Loop from1to6and print each number on its own line, but SKIP the number3usingcontinue: 1 2 4 5 6 The value3must not appear in the output.
Expected Output:
1 2 4 5 6
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.