'중복제거' 태그의 글 목록
2021.10.01_21611-마법사상어와블리자드
소스코드 #include #include #include #include using namespace std; #define SIZE 50 #define ONE 1 #define TWO 2 #define THREE 3 int N,M; int board[SIZE][SIZE];//배열저장 vectorballs; vectormakeBalls; int dy[] = {0,-1,1,0,0 }; int dx[] = {0, 0,0,-1,1 }; int sdy[] = { 0,1,0,-1 }; int sdx[] = { -1,0,1,0 }; int oneBall, twoBall, threeBall; void init();//초기화 및 배열 입력 void magic();//마법 시전 void fire();//불 마법 void..
2021. 10. 1.