백준 #2 (구현) - A+B - 4

📌 문제

입력값의 개수가 주어지지 않을 때 A+B 출력하라

📌 아이디어 & 코드

🔥 Python

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

try에 대한 에러가 생긴경우 except를 실행한다.

https://velog.io/@jsw8050/%EB%B0%B1%EC%A4%80-while%EB%AC%B8-10951%EB%B2%88-AB-4-Python

🔥 Java

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);
        }
    }
}

hashNextInt() 함수를 활용한다.

좋은 웹페이지 즐겨찾기