#include <iostream>
using namespace std;
int factorial(int N)
{
if (N<=1)
return 1;
return (N * factorial(N-1));
}
int main(void)
{
int N = 0;
int result = 0;
cin >> N;
if (N>=0 and N<=12)
{
result = factorial(N);
cout << result << endl;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 10950번 A+B -3 (C++) (0) | 2022.06.21 |
---|---|
[백준] 10926번 ??! (파이썬) (0) | 2022.06.21 |
[백준] 10870번 피보나치 수 5 (파이썬) (0) | 2022.06.17 |
[백준] 10869번 사칙연산 (C++) (0) | 2022.06.17 |
[백준] 10866번 덱 (파이썬) (0) | 2022.06.17 |