본문 바로가기
Algorithm/BaekJoon[Java]

백준 10952

by 씨니 2022. 3. 16.
728x90

마지막 0이 2개 들어올 경우 stop!

 

 

▶풀이방법

import java.util.*;
public class Main{
	public static void main(String[] args){
    	Scanner sc = new Scanner(System.in);
        
        int a,b;
        while(true){
        	a = sc.nextInt();
            b = sc.nextInt();
            
            if((a==0) && (b==0)){
            	break;
            }
            
            System.out.println(a+b);
        }
        sc.close();
    }
}
728x90

'Algorithm > BaekJoon[Java]' 카테고리의 다른 글

백준 11021  (0) 2022.03.16
백준 10953(문자열 콤마(') 구분)  (0) 2022.03.16
백준 10951  (0) 2022.03.16
백준 10950  (0) 2022.03.16
백준 1000, 2558  (0) 2022.03.16