[JS]백준_10952번: A+B - 5
백준 온라인 저지 10952번
https://www.acmicpc.net/problem/10952
readline 모듈
💡 문제
0 0이 들어올 때까지 A+B를 출력하는 문제
💡 코드
const readline = require("readline")
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
})
let input = []
rl.on("line", function(line) {
input.push(line)
}).on("close", function() {
// [[1 1], [2 3], [3 4], [9 8], [5 2]. [0 0]]
for(var i = 0; i < input.length; i++) {
let A = +input[i].split(' ')[0]
let B = +input[i].split(' ')[1]
let result = A + B
if(result > 0) {
console.log(result)
}
}
process.exit()
})
Author And Source
이 문제에 관하여([JS]백준_10952번: A+B - 5), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@okdol0505/JS백준10952번-AB-5저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)