Post

홀짝 구분하기

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

📔 문제 설명

자연수 n이 입력으로 주어졌을 때 만약 n이 짝수이면 “n is even”을, 홀수이면 “n is odd”를 출력하는 코드를 작성해 보세요.

💡 입출력 예

1
2
3
4
5
// 홀수
1 is odd

// 짝수
100 is even

💻내가 작성한 코드

2로 나누었을 때 나머지가 0이면 짝수, 아니면 홀수로 출력

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 () {
  n = Number(input[0]);
  console.log(n % 2 === 0 ? `${n} is even` : `${n} is odd`);
});
This post is licensed under CC BY 4.0 by the author.