whatisthis?
백준 1008 javascript (node.js) 풀이 본문
입출력과 사칙연산 - (8)
💡문제
두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오.
📁입력
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
📈출력
첫째 줄에 A/B를 출력한다.
< 코드 >
const fs = require("fs");
const input = fs.readFileSync("/dev/stdin").toString().split(' ');
const A = parseInt(input[0]);
const B = parseInt(input[1]);
console.log(A / B);
< 풀이 >
https://mywebproject.tistory.com/169
fs 모듈과 input 배열에 대한 설명은 지난 포스팅을 참조하자. :)
A와 B를 input 배열의 아이템 0번 / 1번으로 각각 저장한다.
대신, 반드시 연산을 'number'의 형태로 해야하므로 parseInt를 해준다.
문제에서 두 정수 A와 B라고 나와있으므로 parseInt.
>> 만약 소수점 포함한 수라면? parseFloat 해주자.
'ALGORITHM > BOJ (Node.js)' 카테고리의 다른 글
백준 10430 javascript (node.js) 풀이 (0) | 2021.12.06 |
---|---|
백준 10869 javascript (node.js) 풀이 (0) | 2021.12.06 |
백준 10998 javascript (node.js) 풀이 (0) | 2021.12.06 |
백준 1001 javascript (node.js) 풀이 (1) | 2021.12.06 |
백준 1000 javascript (node.js) 풀이 (1) | 2021.12.06 |