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

ims·2021년 6월 14일
0

백준 문제풀이

목록 보기
2/17
post-custom-banner

📌 문제

입력값의 개수가 주어지지 않을 때 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() 함수를 활용한다.

profile
티스토리로 이사했습니다! https://imsfromseoul.tistory.com/ + https://camel-man-ims.tistory.com/
post-custom-banner

0개의 댓글