728x90
#include <iostream>
#include <string>
using namespace std;
int main() {
int n, len, i, cnt;
string str;
cin>>n;
getline(cin, str);
while(n--)
{
getline(cin, str);
len=str.size();
cnt=0;
for(i=0; i<len; i++)
{
if(str[i]=='a' || str[i]=='e' || str[i]=='i' || str[i]=='o' || str[i]=='u' || str[i]=='A' || str[i]=='E' || str[i]=='I' || str[i]=='O' || str[i]=='U')
{
cout<<str[i];
cnt++;
}
}
if(cnt==0)
{
cout<<"???";
}
cout<<"\n";
}
return 0;
}
728x90
'알고리즘 > 문제' 카테고리의 다른 글
[백준] 6588. 골드바흐의 추측 <C++> (0) | 2020.07.21 |
---|---|
구름 문제은행 (시공의 폭풍 속으로) <C++> (0) | 2020.07.17 |
구름 문제은행 (배열 합치기) <C++> (0) | 2020.07.04 |
[백준] 17615. 볼 모으기 <C++> (0) | 2020.06.20 |
[백준] 1789. 수들의 합 <C++> (0) | 2020.06.07 |
댓글