하노이 탑 검색해보면 수두룩 뺵뺵빽이 나온다. 그럼에도 글을 쓰는 이유는 무엇이냐.... (그림 출처 : http://programs-ram.blogspot.kr/2015/01/c-program-to-print-tower-of-hanoi-using.html) 대부분의 블로그에서 하노이탑 설명이 위의 그림처럼 3번째 기둥에서 마무리 짓는 형태로 설명하고 있다. 그러면서 코드는 만들어놓은게 #include #include int Cnt;void hanoi(int n, int a, int b){int temp;if(n==1){printf("Move %d, move from Fall%d, to Fall%d\n", n, a, b);}else{temp=6-a-b;hanoi(n-1, a, temp);printf("M..