==이장길== {{{~cpp #include int main(void) { int i; for(i=1;i<11;i++){ if(i==5){ continue; } cout << i; } return 0; } }}}