Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

데블스캠프2006/월요일/연습문제/기타문제/이경록

From ZeroWiki
#include <iostream.h>

int main(void)

{
	int a;
	for(a=1;a<=10;a++){
		if(a==5){
			continue;
		}
		
		else {
			cout<<a<<"\n";
		}
	}
	return 0;
}