크로아티아 알파벳: 백준 2941번 C# (7단계, 문자열)
2019. 10. 19.
이번에는 크로아티아 알파벳의 개수를 세는 문제를 풀어보겠습니다. 코드전문미리보기 ...더보기 static void Main(string[] args) { string input = Console.ReadLine(); string[] croaAlphabets = new string[] { "c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z=" }; Console.WriteLine(CountSomeWord(input, croaAlphabets)); } static int CountSomeWord(string word, string[] someWords) { int someWordCount = 0; int emptyCount = 0; for (int i = 0; i < word...