[백준 알고리즘] 10952번 A+B - 5(Python3, Java)언어, 알고리즘 공부/백준2020. 2. 11. 18:02
Table of Contents
<Python3>
import sys
while(1):
line = sys.stdin.readline()
a, b = line.split()
if a == '0' and b == '0':
break
print(int(a)+int(b))
<Java>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main
{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
while(true){
String[] line = br.readLine().split(" ");
if(Integer.parseInt(line[0])==0 && Integer.parseInt(line[1])==0)
break;
System.out.println(Integer.parseInt(line[0])+ Integer.parseInt(line[1]));
}
}
}
▼링크
https://www.acmicpc.net/problem/10952
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 1110번 더하기 사이클(Python3, Java) (0) | 2020.02.11 |
---|---|
[백준 알고리즘] 10951번 A+B - 4(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 11022번 A+B - 8(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 11021번 A+B - 7(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 1552번 빠른 A+B(Python3, Java) (0) | 2020.02.11 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!