Post

a와 b 출력하기

https://school.programmers.co.kr/learn/courses/30/lessons/181951

📔 문제 설명

정수 a와 b가 주어집니다. 각 수를 입력받아 입출력 예와 같은 형식으로 출력하는 코드를 작성해 보세요.

💡 입출력 예

a = 4 b = 5

💻내가 작성한 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const readline = require("readline");
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout
});

let input = [];

rl.on("line", function (line) {
  input = line.split(" ");
}).on("close", function () {
  const a = Number(input[0]);
  const b = Number(input[1]);
  console.log("a = " + a + "\n" + "b = " + b);
});
This post is licensed under CC BY 4.0 by the author.