charAt(0) 을 통해 입력 받은 값들 char형 변수에 할당한다.


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));
}
}
view raw test.java hosted with ❤ by GitHub

+ Recent posts