본문 바로가기
코딩테스트 준비/백준 C#

백준 C# - 10808

by 코딩하는 돼징 2023. 10. 23.
반응형
using System;
using System.Collections.Generic;
using System.Text;

namespace baek2
{
    class Program
    {
        static void Main(string[] args)
        {
            string word = Console.ReadLine();
            int[] vs = new int[26];

            foreach(char c in word)
            {
                vs[c - 'a']++;
            }

            for(int i = 0; i<vs.Length;i++)
            {
                Console.Write($"{vs[i]} ");
            }
        }
    }
}

 

 

 

 

반응형

'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글

백준 C# - 10820 +)풀이  (0) 2023.10.23
백준 C# - 10809  (0) 2023.10.23
백준 C# - 1918 +) 풀이  (0) 2023.10.20
백준 C# - 1935 +) 풀이  (0) 2023.10.20
백준 C# - 17298 +) 풀이  (0) 2023.10.17

댓글