반응형

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

 

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

 

 

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

 

1) JAVA

   * 해당 문제는 끝나는 부분이 명시되어 있지않아 while문 조건을 잘 주어야하는데 

     hasNextInt는 입력받은 int값이 존재할 경우 true로 while문 안으로 들어갈 수 있도록 해주기 때문에 사용함

import java.util.Scanner;

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

 

2) PYTHON

   * 위와 같이 끝나는 부분 명시를 위해 try-catch문을 사용함

     해당 답은 문제출제자가 원하던 답인지 잘 모르겠음..

try:
    while True:
        a, b = map(int, input().split())
        print(a+b)
except:
    exit()

 

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

 

 

반응형

+ Recent posts