static int[] num = new int[9] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; static bool isFinished = false; static string playerMark = "X "; static string computerMark = "O "; static bool isPlayerWon = false; static bool isComWon = false; static int turnCount = 0; // 현재 턴 static string[,] board = new string[11, 11]; //{ 0 1 2 3 4 5 ..