CJCoding With Joseph

Skip the Number 3

Loop from 1 to 6 and print each number on its own line, but SKIP the number 3 using continue:

1
2
4
5
6

The value 3 must 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.