백준 10951 (python) try except ⭐

Grace Goh·2022년 9월 5일
0

백준 (python)

목록 보기
13/27
post-custom-banner

테스트 케이스 개수가 정해지지 않은 경우

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

try: 변수 A, B에 int형이 들어간다면 A+B의 값을 출력한다.
except: try의 조건에 대한 에러가 발생한 경우
break: while문을 멈춘다.

참고

profile
Español, Inglés, Coreano y Python

0개의 댓글