7. 행맨 게임더보기char[] secretWord = { 'h', 'a', 'n', 'g', 'm', 'a', 'n' }; // string secretWord = "Hangman"; char[] guessWord = { '_', '_', '_', '_', '_', '_', '_' }; // char[] guessWord = new char[secretWord.Length]; for(int i = 0; i int attemps = 6; bool wordGuessed = false; string word; do { Console.WriteLine($"Guess the word : {secretWord.Length} digit"); Console.WriteLine($"{attemps} ..