https://www.acmicpc.net/problem/10808
#include <iostream>
#include <string>
using namespace std;
int main() {
string S; cin >> S;
int alpha[26] = { 0 };
for (int i = 0; i < S.length(); i++) alpha[S[i] - 97]++;
for (int i = 0; i < 26; i++) cout << alpha[i] << ' ';
}
'Programming > Algorithm' 카테고리의 다른 글
IEEE754부동소수점 변환 프로그램, 부동소수점<->십진수 (0) | 2019.04.19 |
---|---|
[C++] 백준 1978번 : 소수 찾기 (0) | 2019.02.20 |
[C++] 백준 2475번 : 검증수 (0) | 2019.02.09 |
[C++] 백준 2747번 : 피보나치 수 (0) | 2019.02.09 |
[C++] 백준 1427번 : 소트인사이드 (0) | 2019.02.08 |