개인공부용123 프로그래밍 블로그
[백준] boj10872 본문
1. 풀이 방식 : 단순 재귀 함수로 구현
2. 유의 사항 : 0! = 1
#include <iostream>
#include <stdio.h>
using namespace std;
int recur(int n) {
if (n == 0) return 1;
return n * recur(n - 1);
}
int main() {
int N;
cin >> N;
printf("%d\n", recur(N));
return 0;
}
'알고리즘문제' 카테고리의 다른 글
[백준] boj12865 (0) | 2020.08.21 |
---|---|
[백준]boj15649 (0) | 2020.08.10 |
[백준] boj 2751 (0) | 2020.08.09 |
[백준] boj1316 (0) | 2020.07.06 |
[백준] 6591 (0) | 2017.05.19 |