-
[백준 10872번] 팩토리얼 (feat. NodeJS)Development/Program Solving 2021. 1. 7. 02:05728x90
문제
0보다 크거나 같은 정수 N이 주어진다. 이때, N!을 출력하는 프로그램을 작성하시오.
풀이
3! = 3 * 2 * 1
2! = 2 * 1
이런식으로 연산하는 것을 팩토리얼이라고 한다.
n-1을 곱하는 것이 반복되므로 재귀를 사용해서 알고리즘을 작성하면 된다.
const fs = require("fs"); const input = fs.readFileSync("/dev/stdin"); const n = parseInt(input); const getFactorial = (n) => { if (n === 1 || n === 0) { return 1; } return n * getFactorial(n - 1); }; const init = () => { const result = getFactorial(n); console.log(result); }; init();
728x90'Development > Program Solving' 카테고리의 다른 글
[백준 2447번] 별 찍기 - 10 (feat. NodeJS) (2) 2021.02.05 [백준 16395번] 파스칼의 삼각형 (feat. NodeJS) (0) 2021.01.08 [백준 10870번] 피보나치 수 (feat. NodeJS) (0) 2021.01.07 [백준 2292번] 벌집 (feat. NodeJS) (0) 2021.01.06 [백준 1712번] 손익분기점 (feat. NodeJS) (0) 2021.01.06