작성
·
172
·
수정됨
0
모음이나 자음이 3개가 연속으로 올 때 비밀번호로 적절하지 않다는 조건을 for문 밖으로 빼면 틀리는 이유가 알고 싶습니다!이렇게 짰을 땐 틀렸다고 나오는데 조건을 어느 부분에서 만족하지 않는지 궁금합니다
#include<bits/stdc++.h>
using namespace std;
string str;
bool mo(char c){
if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u'){
return 1;
}
return 0;
}
int main(){
while(true){
cin >> str;
if(str == "end"){
break;
}
bool moum = 0;
bool same = 0;
int cnt1 = 0;
int cnt2 = 0;
for(int i = 0; i < str.length(); i++){
if(mo(str[i])){
moum = 1;
cnt1++;
cnt2 = 0;
}else{
cnt2++;
cnt1 = 0;
}
if(i >= 1 && (str[i-1] == str[i]) && str[i] != 'e' && str[i] != 'o'){
same = 1;
}
}
if(cnt1 >= 3 || cnt2 >= 3 || moum == 0 || same == 1){
cout << "<" << str << "> is not acceptable.\n";
}else{
cout << "<" << str << "> is acceptable.\n";
}
}
return 0;
}
답변 1
0
안녕하세요 민석님 ㅎㅎ
제가 조금 다듬어 봤습니다.
#include<bits/stdc++.h>
using namespace std;
string str;
bool mo(char c) {
return c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u';
}
int main() {
while (true) {
cin >> str;
if (str == "end") {
break;
}
bool moum = false; // 모음이 하나라도 있는지 체크
bool same = false; // 동일한 글자가 연속으로 오는지 체크 (ee, oo 제외)
int cnt1 = 0; // 연속된 모음 수
int cnt2 = 0; // 연속된 자음 수
for (int i = 0; i < str.length(); i++) {
if (mo(str[i])) {
moum = true;
cnt1++;
cnt2 = 0;
if (cnt1 >= 3) break; // 모음이 3개 이상 연속되면 루프 탈출
} else {
cnt2++;
cnt1 = 0;
if (cnt2 >= 3) break; // 자음이 3개 이상 연속되면 루프 탈출
}
if (i > 0 && str[i] == str[i-1]) {
if (str[i] != 'e' && str[i] != 'o') {
same = true; // ee, oo를 제외한 동일한 글자가 연속으로 오는 경우
break;
}
}
}
// 모음이 없거나, 같은 글자가 연속으로 오는 경우, 혹은 연속된 모음이나 자음이 3개 이상인 경우
if (!moum || same || cnt1 >= 3 || cnt2 >= 3) {
cout << "<" << str << "> is not acceptable.\n";
} else {
cout << "<" << str << "> is acceptable.\n";
}
}
return 0;
}
모음이 3개 이상이라면 탈출해야 합니다.
왜그러면 예를 들어
iiib
이 경우에 탈출을 안하게 되면 저기서 다시 cnt1 = 0으로 초기화되지 않을까요?
주석도 달았으니 참고 부탁드립니다.
또 질문 있으시면 언제든지 질문 부탁드립니다.
좋은 수강평과 별점 5점은 제게 큰 힘이 됩니다. :)
감사합니다.
강사 큰돌 올림.