{{{~cpp #include using namespace std; int main() { for ( int i = 1 ; i <= 10 ; i++) { if ( i == 5 ) continue; else cout << i << endl; } system("pause"); return 0; } }}}