코드 #include using namespace std; string s; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); while(1) { cin >> s; bool vowel = false, dusthr = true, same = true; int mo = 0,ja = 0; if (s=="end") break; for(int i = 0; i < s.length(); i++) { if (s[i] == 'a'||s[i] == 'e' || s[i] == 'i' || s[i] == 'o' || s[i] == 'u') { vowel = true; mo++; ja = 0; if (mo == 3) dusthr = fal..