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] << " ";
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 11050번 : 이항 계수 1 (0) | 2019.02.21 |
---|---|
[C++] 백준 10872번 : 팩토리얼 (0) | 2019.02.21 |
[C++] 백준 4673번 : 셀프 넘버 (0) | 2019.02.21 |
[C++] 백준 2775번 : 부녀회장이 될테야 (0) | 2019.02.21 |
[C++] 백준 2747번 : 피보나치 수 (0) | 2019.02.21 |