250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(SWEA c++)4406. 모음이 보이지 않는 사람 본문
728x90
반응형
문자열을 받아와서 for문을 통해 모음만 제외한 문자를 ans에 저장하여 출력하면 된다..!
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
for(int tc = 1; tc <= t; tc++)
{
string s, ans = "";
cin >> s;
for(int i = 0; i < s.size(); i++)
{
if(s[i] != 'a' && s[i] != 'e' && s[i] != 'i' && s[i] != 'o' && s[i] != 'u')
ans += s[i];
}
cout << "#" << tc << " " << ans << endl;
}
return 0;
}
728x90
반응형
'SW Expert Academy' 카테고리의 다른 글
(SWEA c++)4522. 세상의 모든 팰린드롬 (0) | 2020.11.11 |
---|---|
(SWEA c++)4466. 최대 성적표 만들기 (0) | 2020.11.11 |
(SWEA c++)4371. 항구에 들어오는 배 (0) | 2020.11.10 |
(SWEA c++)4299. 태혁이의 사랑은 타이밍 (0) | 2020.11.10 |
(SWEA c++)4047. 영준이의 카드 카운팅 (0) | 2020.11.10 |