본문 바로가기

카테고리 없음

[백준] 1008 A/B / node.js

문제

https://www.acmicpc.net/problem/1008

 

1008번: A/B

두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

제출한 답안

const input = require('fs').readFileSync('/dev/stdin').toString().split(' ');
const A = parseInt(input[0]);
const B = parseInt(input[1]);
console.log(A/B);

 

배운점 / 느낀점

쉬웠다!!