#include <stdio.h> int main() { char str[256]={0,}; char ch; str['H']=1; str['A']=2; str['N']=3; str['C']=4; str['O']=5; str['M']=6; while(1) { scanf("%c", &ch); if(str[ch]) printf("%d\n",str[ch]-1); else break; fflush(stdin); } printf("프로그램을 종료합니다."); return 0; } 6개의 문자배열을 만들고 {'H', 'A', 'N', 'C', 'O', 'M'} 으로 초기..