[백준] 10808번

Jeanine·2022년 3월 3일
0

baekjoon

목록 보기
1/120
post-thumbnail

💻 C++ 기반

https://www.acmicpc.net/problem/10808

#include <iostream>
#include <string>

using namespace std;

int main()
{
    ios_base ::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    string word;
    cin >> word;

    int alphabet[26] = {
        0,
    };

    for (int i = 0; i < word.length(); i++)
    {
        alphabet[word[i] - 'a']++;
    }

    for (int i = 0; i < 26; i++)
    {
        cout << alphabet[i] << ' ';
    }

    return 0;
}
profile
Grow up everyday

0개의 댓글