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

hyng·2022년 2월 18일
0

SWEA

목록 보기
36/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        String vowel[] = {"a", "e", "i", "o", "u"};
        int T = Integer.parseInt(sc.nextLine());
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            String input = sc.nextLine();


            for(int i=0; i<vowel.length; i++){
                input = input.replaceAll(vowel[i], "");
            }

            sb.append(input).append("\n");



        }
        System.out.println(sb);

    }
	
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글