11571 [BOJ] 1157번: 단어 공부 https://www.acmicpc.net/problem/1157 소문자, 대문자 구분해서 26칸짜리 배열에 다 집어넣고 가장 많이 있는 인덱스 + 'A' 출력! #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false), cin.tie(0); string s; cin >> s; int al[26] = { 0, }; for (auto &i : s) { if ('A' 2018. 7. 26. 이전 1 다음