728x90
📍 신문 헤드라인
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
'Algorithm > SWEA' 카테고리의 다른 글
[JAVA | SWEA] #2056 연월일 달력 📆 (2) | 2023.12.05 |
---|---|
[JAVA | SWEA] #2046 스탬프 찍기 (0) | 2023.12.04 |
[JAVA | SWEA] #1545 거꾸로 출력해 보아요 🙃 (0) | 2023.12.04 |
[JAVA | SWEA] #2058 자릿수 더하기 (0) | 2023.12.04 |
[JAVA | SWEA] #2063 중간값 찾기 (0) | 2023.12.04 |