문제 출처: https://www.acmicpc.net/problem/11654




1
2
3
4
5
6
7
8
9
10
11
12
13
import java.io.BufferedReader;
import java.io.InputStreamReader;
 
public class Main {
    public static void main(String[] args) throws Exception {
        // 첫 번째 방법
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String intput = reader.readLine();
        System.out.println((int)intput.charAt(0));
        // 두 번째 방법
        System.out.println(System.in.read());
    }
}
cs



'Algorithm' 카테고리의 다른 글

백준 2675번: 문자열 반복  (0) 2018.10.20
백준 10809번: 알파벳 찾기  (0) 2018.10.20
백준 10039번: 평균 점수  (0) 2018.10.15
백준 2920번: 음계  (0) 2018.10.15
백준 8958번: OX퀴즈  (0) 2018.10.15

+ Recent posts