-
[백준 조합] 팩토리얼 C++Computer Science/백준 Boj 2023. 10. 23. 21:17
https://www.acmicpc.net/problem/10872
#include <iostream> #include <cmath> using namespace std; int factorial(int N) { if(N == 1 || N == 0) return 1; return N * factorial(N - 1); } int main() { int N = 0; cin >> N; cout << factorial(N) << endl; return 0; }
'Computer Science > 백준 Boj' 카테고리의 다른 글
[백준, DP] 연속합 C++(복습필요) (0) 2023.10.24 [백준 조합] 제출 C++ (0) 2023.10.23 [백준 조합] 녹색거탑 C++ (0) 2023.10.23 [백준 조합] 베라의 패션 C++ (0) 2023.10.23 [백준 DP] 01타일 C++ (1) 2023.10.23