N-Queen 문제 소스코드: Revision history

From IT위키

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

6 May 2018

  • curprev 13:0113:01, 6 May 2018Itwiki talk contribs 1,072 bytes +1,072 새 문서: == C 언어 == <syntaxhighlight lang='c' line='line'> #include <stdio.h> #include <stdlib.h> void queens(int); int promising(int); int n; int col[255]={0,}; FILE *inputFile, *outp...