[백준]Node.js_1000번|1001번|10998번|1008번

nada_1221·2022년 8월 24일
0

Daily Coding

목록 보기
3/3


이제부터 백준 알고리즘의 빡침 포인트 fs 모듈이 나온다.
fs모듈에 관해서 다루는 글은 다루지 않을 생각이니, 만약 필요하다면 여기 에서 확인해보시길.

let fs = require("fs");
let input = fs.readFileSync("/dev/stdin")
	.toString()
	.split(" ")

let A = Number(input[0]);
let B = Number(input[1]);

console.log(A+B)
console.log(A-B)
console.log(A*B)
console.log(A/B)

아직도 저놈의 let input = fs.readFileSync("/dev/stdin") 뒤에 붙는
.toString(),.split(" ") 외에 더 들어갈 애들 때문에 골머리가 아프다...

해당 내용에 관련된 유튜브 강의를 들어야 할 것 같다.

profile
FE_개발자_지망생

0개의 댓글