언젠가는 펼쳐 볼 아카이브
[BOJ] 10951번 - A+B - 4 본문
사용언어 : javascript - node.js
# 제출 코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
let input = fs.readFileSync(filePath).toString().split('\n');
const testCaseArray = [];
for (let i = 0; i < input.length; ++i) {
if (input[i] === '') {
break;
}
const tempValue = input[i].split(' ').map((item) => +item);
testCaseArray.push({ A: tempValue[0], B: tempValue[1] });
}
solution(testCaseArray);
function solution(testCaseArray) {
let a = 0;
let b = 0;
let idx = 0;
while (idx < testCaseArray.length) {
a = testCaseArray[idx].A;
b = testCaseArray[idx].B;
console.log(a + b);
idx++;
}
}
'IT > Baekjoon Oline Judge' 카테고리의 다른 글
[BOJ] 10818번 - 최소, 최대 (0) | 2023.08.16 |
---|---|
[BOJ] 10807번 - 개수 세기 (0) | 2023.08.16 |
[BOJ] 10952번 - A+B - 5 (0) | 2023.08.16 |
[BOJ] 11022번 - A+B - 8 (0) | 2023.08.16 |
[BOJ] 11201번 - A+B - 7 (0) | 2023.08.16 |