반응형

안녕하세요 Jin's 입니다.

 

백준 알고리즘의 while문 A+B - 5 ( 문제 번호 : 10952 )의 소스입니다.

 

 

Java와 Python 두가지 버전 소스입니다.

 

1) JAVA

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		while(true){
			int a = scan.nextInt();
			int b = scan.nextInt();
			if(a==0 && b==0) break;
			System.out.println(a+b);
		}
		scan.close();
	}
}

 

2) PYTHON

while True:
    a, b = map(int, input().split())
    if a == 0 and b == 0:
        break
    else :
        print(a+b)

 

여러분도 한번 풀어보세요!

 

 

반응형

+ Recent posts