Home 홀짝 구분하기
Post
Cancel

홀짝 구분하기

문제를 직접 풀어보실 경우 여기를 클릭해 주세요.

문제 설명

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


제한사항

  • 1 ≤ n ≤ 1,000

입출력 예

입력 #1

class="codehilite">100

출력 #1

class="codehilite">100 is even

입력 #2

class="codehilite">1

출력 #2

class="codehilite">1 is odd

※ 2023년 05월 15일 지문이 수정되었습니다.

문제 풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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]);
    let preparedString = 'odd'
    if(n%2 === 0) {
        preparedString = 'even'
    }
    console.log(`${n} is ${preparedString}`)
});

성능 요약

  • 메모리: 32.2 MB

  • 시간: 46.39 ms

This post is licensed under CC BY 4.0 by the author.

문자 리스트를 문자열로 변환하기

내일배움캠프 8주차