728x90
문제 링크 : www.acmicpc.net/problem/10872
#include<stdio.h>
int fact(int _n)
{
if (_n == 0) return 1;
else {
return _n*fact(_n - 1);
}
}
int main()
{
int n;
scanf("%d", &n);
printf("%d\n",fact(n));
return 0;
}
간단한 문제
728x90
'Computer Science > Problem Solving(Algorithm)' 카테고리의 다른 글
Bit 연산 (0) | 2021.11.22 |
---|---|
BOJ 10872 - 팩토리얼 (0) | 2021.06.18 |
< BOJ > 9934 - 완전 이진 트리 (0) | 2019.06.06 |
< BOJ > 2571 - 색종이-3 (0) | 2019.06.04 |
< BOJ > 1912 - 연속합 (0) | 2019.06.02 |
댓글