www.acmicpc.net/problem/1157 1157번: 단어 공부 알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다. www.acmicpc.net #include using namespace std; int main() { int count[26] = {0}; int temp, max = 0; int maxCount = 0; int index = 0; //Z : 90 string input; cin>>input; for(int i=0; i 90) { count[temp-97]++; if(count[temp-97] > max) max = count[temp-97]; } //대문자 else ..