본문 바로가기

Programming/BaekJoon

[C++] 백준 10808번 : 알파벳 개수


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




#include <iostream>

using namespace std;

int main() {

int Count[26] = { 0, };

char input[100];


cin >> input;

for (int i = 0; input[i] != NULL; i++)

Count[(int)input[i] - 97]++;

for (int i = 0; i < 26; i++) 

cout << Count[i] << " ";

}