[JAVA] SWEA 8741- 두문자어

hyng·2022년 3월 18일
0

SWEA

목록 보기
54/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{

        Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();


        int T = Integer.parseInt(sc.nextLine());
        for (int tc = 1; tc <= T; tc++) {
            sb.append("#").append(tc).append(" ");
            String input[] = sc.nextLine().split(" ");
            for(int i=0; i<input.length; i++){
                String firstLetter = String.valueOf(input[i].charAt(0));

                sb.append(firstLetter.toUpperCase(Locale.ROOT));
            }
            sb.append("\n");
        }
        System.out.println(sb);
    }

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

0개의 댓글