Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
using namespace std; int main() { int i = 0; while (i < 10) { if (i == 4) { i++; continue; } cout << i << "\n"; i++; } return 0; }
0
1
2
3
5
6
7
8
9