leehyeon-dv 님의 블로그

(반복문) A+B (5) 본문

코딩테스트/백준

(반복문) A+B (5)

leehyeon-dv 2024. 12. 31. 01:17

📌 문제

 

🐍파이썬

import sys

addResult = []

while True:
    A,B = map(int, sys.stdin.readline().split())
    if A == 0 and B == 0:
        break
    addResult.append(A+B)

for i in addResult:
    print(i)

 

🧩자바

import java.io.*;
import java.util.ArrayList;
import java.util.List;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));

        List<Integer> addResult = new ArrayList<>();

        while(true) {
            String [] input = br.readLine().split(" ");
            int a = Integer.parseInt(input[0]);
            int b = Integer.parseInt(input[1]);
            if (a == 0 && b == 0) {
                break;
            }
            addResult.add(a + b);
        }

        for(int i=0; i<addResult.size(); i++) {
            bw.write(addResult.get(i) + "\n");
        }
        
        bw.flush();
        bw.close();
        br.close();
    }
}

'코딩테스트 > 백준' 카테고리의 다른 글

(반복문) A+B (4)  (1) 2025.01.02
(반복문)별 찍기(2)  (1) 2024.12.31
(반복문) 별찍기 (1)  (1) 2024.12.31
(반복문)A+B(8)  (0) 2024.12.31
(반복문)빠르게 A+B(7)  (0) 2024.12.31