알파벳을 key, 알파벳 개수를 value로 하는 딕셔너리 생성 단어를 입력받고 입력받은 단어에 나오는 알파벳을 key로 하는 value의 값을 1씩 증가 using System; using System.Collections.Generic; namespace _10808 { class Program { static void Main(string[] args) { Dictionary dic = new Dictionary(); char key = 'a'; for (int i = 0; i