No Rules Rules

팩토리얼 (feat. 백준, 10872번) 본문

생활/코테

팩토리얼 (feat. 백준, 10872번)

개발하는 완두콩 2022. 8. 1. 11:47
728x90
반응형

팩토리얼
https://www.acmicpc.net/problem/10872

 

10872번: 팩토리얼

0보다 크거나 같은 정수 N이 주어진다. 이때, N!을 출력하는 프로그램을 작성하시오.

www.acmicpc.net

반응형
// 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
반응형
Comments