언젠가는 펼쳐 볼 아카이브

[BOJ] 11022번 - A+B - 8 본문

IT/Baekjoon Oline Judge

[BOJ] 11022번 - A+B - 8

개발자희망생고롸파덕 2023. 8. 16. 18:11

사용언어 : javascript - node.js

 

# 제출 코드

const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
let input = fs.readFileSync(filePath).toString().split('\n');

let testCaseNum = +input[0];
let answer = '';

for (let i = 1; i <= testCaseNum; i++) {
  let num = input[i].split(' ');
  const a = +num[0];
  const b = +num[1];
  const result = a + b;
  answer += `Case #${i}: ${a} + ${b} = ${result}\n`;
}

console.log(answer);

 

'IT > Baekjoon Oline Judge' 카테고리의 다른 글

[BOJ] 10951번 - A+B - 4  (0) 2023.08.16
[BOJ] 10952번 - A+B - 5  (0) 2023.08.16
[BOJ] 11201번 - A+B - 7  (0) 2023.08.16
15552번 - 빠른 A+B  (0) 2023.08.16
[BOJ] 25314번 - 코딩은 체육과목 입니다  (0) 2023.08.16