import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
String t = sc.nextLine();
System.out.println(t.toUpperCase());
}
}
toUpperCase 활용
'SWEA' 카테고리의 다른 글
[SWEA] 서랍의 비밀번호 (1) | 2024.09.16 |
---|---|
[SWEA] 스탬프 찍기 (1) | 2024.09.13 |
[SWEA] 알파벳을 숫자로 변환 (0) | 2024.09.13 |
[SWEA] 연월일 달력 (0) | 2024.09.13 |
[SWEA] 자릿수 더하기 (0) | 2024.09.13 |