[백준] 10951번 (Java)

vector13·2022년 7월 2일
0

백준

목록 보기
13/15

10951번 A+B - 4

아까 문제와 달리 이거는 더이상 데이터가 없을 때 종료하게 해야한다.
Scanner 로 풀기위해선 hasNextInt을 사용하면 된다고 한다.

import java.util.Scanner;

public class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        while(sc.hasNextInt()){
            int a = sc.nextInt();
            int b = sc.nextInt();
            System.out.println(a+b);
        }
        
    }
}
profile
HelloWorld! 같은 실수를 반복하지 말기위해 적어두자..

0개의 댓글