[백준] 📂. (10808번) 알파벳 개수
🗒️ 10808번) 알파벳 개수
#include <iostream>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int alpha[26] = {};
string words;
cin >> words;
for (char w : words)
alpha[w - 'a']++;
for (int count : alpha)
cout << count << " ";
return 0;
}
댓글남기기