본문 바로가기
Problem Solving/SWEA

[SWEA] 4406. 모음이 보이지 않는 사람

by 테리는당근을좋아해 2020. 2. 21.

문제

영어로 이루어진 문자열이 주어졌을 때, 모음을 제외한 자음만을 출력하는 문제

 

풀이방법

문자열에서 각 문자마다 탐색해서 '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();
		}
	}
}

 

댓글