문제 링크
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWNcD_66pUEDFAV8
C++ 풀이
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int main() {
vector<char>vowels = { 'a','e','i','o','u' };
vector<string>words;
int T, check;
cin >> T;
words.resize(T);
for (int i = 0; i < T; i++)
cin >> words[i];
for (int i = 0; i < T; i++) {
cout << "#" << i + 1 << " ";
for (int j = 0; j < words[i].size(); j++) {
for (check = 0; check < 5; check++) {
if (words[i][j] == vowels[check])
break;
}
if (check >= 5)
cout << words[i][j];
}
cout << '\n';
}
return 0;
}
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[SWEA 1861] 정사각형 방 (0) | 2020.05.27 |
---|---|
[SWEA 7829] 보물왕 태혁 (0) | 2020.05.26 |
[프로그래머스] 모의고사 (0) | 2020.05.25 |
[프로그래머스] 가장 큰 정사각형 찾기 (0) | 2020.05.21 |
[프로그래머스] 짝지어 제거하기 (0) | 2020.05.19 |