[BOJ] 11654 JAVA

Organ·2023년 9월 11일
0

[문제 풀이]

목록 보기
32/123

아스키 코드

문제

내 풀이

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


public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		
		int c = (char)System.in.read();
		
		System.out.print(c);
	}
}

정리

throws Exception를 빼먹었다. 근데 제출은 됨.

출처

https://st-lab.tistory.com/59

0개의 댓글