백준 #2 (구현) - A+B - 4
📌 문제
입력값의 개수가 주어지지 않을 때 A+B 출력하라
📌 아이디어 & 코드
🔥 Python
while True:
try:
a,b = map(int,input().split())
print(a+b)
except:
break
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()
함수를 활용한다.
Author And Source
이 문제에 관하여(백준 #2 (구현) - A+B - 4), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@camel-man-ims/백준-2-구현-AB-4저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)