Recent Posts
Notice
No Rules Rules
팩토리얼 (feat. 백준, 10872번) 본문
728x90
반응형
팩토리얼
https://www.acmicpc.net/problem/10872
반응형
// woohyeon.kim
// https://www.acmicpc.net/problem/10872
#include <iostream>
using namespace std;
int factorial(int n) {
if (n < 2)
return 1;
return n * factorial(n - 1);
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
cout << factorial(N) << "\n";
return 0;
}
// *&)*@*
팩토리얼을 구현할 수 있는가 를 묻는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
재귀함수가 뭔가요? (feat. 백준, 17478번) (0) | 2022.08.01 |
---|---|
피보나치 수 5 (feat. 백준, 10870번) (0) | 2022.08.01 |
골드바흐의 추측 (feat. 백준, 9020번) (0) | 2022.08.01 |
베르트랑 공준 (feat. 백준, 4948번) (0) | 2022.07.31 |
소수 구하기 (feat. 백준, 1929번) (0) | 2022.07.31 |
Comments