N

(SWEA c++)4406. 모음이 보이지 않는 사람 본문

SW Expert Academy

(SWEA c++)4406. 모음이 보이지 않는 사람

naeunchan 2020. 11. 11. 09:10
728x90
반응형

swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWNcD_66pUEDFAV8&categoryId=AWNcD_66pUEDFAV8&categoryType=CODE

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

문자열을 받아와서 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
반응형