컴퓨터를 공부하고자 마음먹은지 N일차

[50일차]백준/BOJ14681 (Node.js) 본문

🧠PS

[50일차]백준/BOJ14681 (Node.js)

졸린새 2020. 10. 28. 00:51
728x90

4분면 구하기

fs모듈로하면 오류나는 문제입니다.

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const readline = require("readline");
 
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout
});
 
let input = [];
 
rl.on('line'function (line) {
    input.push(line);
  }).on('close'function () {
 
let x = Number(input[0]);
let y = Number(input[1]);
 
// x y둘다 양수 이면 1사분면
if (x > 0 && y > 0){
    console.log(1);
    }
// x는 음수 y는 양수이면 2사분면
else if (x < 0 && y > 0){
    console.log(2);
    }   
// 둘 다 음수이면 3사분면
else if (x < 0 && y < 0){
    console.log(3);
    }
// x는 양수 y는 음수이면 4사분면
else if (x > 0 && y < 0){
        console.log(4);
    }
    
    process.exit();
});
cs
Comments