charAt(0) 을 통해 입력 받은 값들 char형 변수에 할당한다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args){ | |
Scanner sc = new Scanner(System.in); | |
char ch = sc.nextLine().charAt(0); | |
System.out.println((int)(ch)); | |
} | |
} |
'백준 알고리즘 > JAVA' 카테고리의 다른 글
[JAVA 자바] 백준 2675번 문자열 반복 (0) | 2018.07.09 |
---|---|
[JAVA 자바] 백준 10809번 알파벳 찾기 (0) | 2018.07.09 |
[JAVA 자바] 백준 10039번 평균 점수 (0) | 2018.07.09 |
[JAVA 자바] 백준 2920번 음계 (0) | 2018.07.09 |
[JAVA 자바] 백준 8958번 OX퀴즈 (0) | 2018.07.09 |