728x90

📍 신문 헤드라인

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

 

 

toUpperCase() 함수를 사용했다.

str.toUpperCase()

 

 

 

✨ 전체 코드 ✨

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Solution {
    public static void main(String[] args) throws NumberFormatException, IOException {
        BufferedReader sc = new BufferedReader(new InputStreamReader(System.in));
        String str = sc.readLine();
        System.out.println(str.toUpperCase());
    }
}

 

 

 

🌀 성능

  • 메모리 : 23,892 KB
  • 실행시간 : 102 ms