본문 바로가기

카테고리 없음

[백준] 1001 A-B / node.js

문제

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

 

1001번: 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);

 

배운점 / 느낀점

쉬웠다. 쓰다보니 문득 parseInt와 Number의 차이는 뭘까? 생각이 들어 이거는 정리해놔야겠다! 

+ 정리 후 링크 추가하기!