본문 바로가기

IT/알고리즘

백준 7단계(11654)

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
public class Main {
    
    public static void main(String[] args) throws Exception{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        //캐릭터로 입력을 받고
        char character = (charbr.read();
        //ascii코드로 변경하기 위해서 int로 형변환
        int ascii = (int) character;
        //write의 특성인 int를 입력하면 char로 출력하기 때문에 또다시 string으로 출력
        //scanner가 정말 편하다
        bw.write(String.valueOf(ascii));
        bw.flush();
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 
반응형

'IT > 알고리즘' 카테고리의 다른 글

백준 7단계(10809)  (0) 2019.12.07
백준 7단계(11720)  (0) 2019.12.07
백준 6단계(1065)  (0) 2019.12.07
백준 6단계(4673)  (0) 2019.12.07
백준 6단계(15596)  (0) 2019.12.07