[작성일: 2023. 08. 22]
https://www.acmicpc.net/problem/10951
풀이
import java.io.*;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
// EOF 방식으로 입력받기: hasNext 메소드 사용
// 입력이 있으면 true, 없으면 false
while (sc.hasNext()) {
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
sc.close();
}
}
이 문제는 hasNext()를 사용하면 간단하게 풀 수 있다.
hasNext()는 입력이 있으면 true, 없으면 false를 주기 때문에 EOF 방식으로 입력받을 때 사용한다.