BE/JAVA
[JAVA 런타임 오류] NumberFormat
java.lang.NumberFormatException은 문자열을 수로 변환할 때 발생하는 에러입니다. NumberFormatException (Java Platform SE 8 ) docs.oracle.com import java.util.*; import java.io.*; class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int a = Integer.parseInt(bf.readLine()); int b = Integer.parseInt(bf.readLine()); System.out.p..