백준 10951번

pitbull terrier·2021년 6월 30일
0

자바 알고리즘

목록 보기
26/27

문제

해결방안

import java.util.Scanner;

public class MainA {

	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		
		while (scanner.hasNextInt()) {
			
			int a = scanner.nextInt();
			int b = scanner.nextInt();
			System.out.println(a+b);			
			
				
			}
		scanner.close();
		}
	}

입력값이 들어올때까지 while문 내부가 실행되지 않다가
입력값이 들어와 hasNextInt()가 true를 리턴한후에 while문이 실행됨

profile
yoonbitnara.github.io

0개의 댓글