🙌문제설명
자연수 n이 입력으로 주어졌을 때 만약 n이 짝수이면 "n is even"을, 홀수이면 "n is odd"를 출력하는 코드를 작성해 보세요.
☑️나의 풀이
조건문 사용함
논리연산자 활용해서 풀고싶었는데..
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]);
if(n%2===0){
console.log(`${n} is even`)
}
else{
console.log(`${n} is odd`)
}
});
❓다른 사람 코드
Number(line) % 2가 0이 아니면? → 홀수이면? odd 출력
0이면? → 짝수이면? even 출력
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = [];
rl.on('line', function (line) {
const result = Number(line) % 2 ? 'odd' : 'even';
console.log(line, 'is', result)
});
☑️배운 점
논리연산자 활용