문제
영어로 이루어진 문자열이 주어졌을 때, 모음을 제외한 자음만을 출력하는 문제
풀이방법
문자열에서 각 문자마다 탐색해서 'a', 'e', 'i', 'o', 'u' 중 하나와 일치하면 출력결과에서 제외시킨다.
소스코드
package samsung;
import java.util.*;
public class s_4406 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int test = sc.nextInt();
for(int t = 1; t <= test; t++) {
ArrayList a = new ArrayList();
String s = sc.next();
for(int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c =='u')
continue;
else {
a.add(c);
}
}
System.out.print("#" + t + " ");
for(int i = 0; i < a.size(); i++) {
System.out.print((char)a.get(i));
}
System.out.println();
}
}
}
'Problem Solving > SWEA' 카테고리의 다른 글
[SWEA] 4676. 늘어지는 소리 만들기 (0) | 2020.02.21 |
---|---|
[SWEA] 4466. 최대 성적표 만들기 (0) | 2020.02.21 |
[SWEA] 4047. 영준이의 카드 카운팅 (0) | 2020.02.21 |
[SWEA] 3499. 퍼펙트 셔플 (0) | 2020.02.21 |
[SWEA] 3456. 직사각형 길이 찾기 (0) | 2020.02.21 |
댓글