https://www.acmicpc.net/problem/11050
제출 코드
#include <iostream>
using namespace std;
int getFactorial(int a)
{
if (a <= 1) return 1;
return a * getFactorial(a - 1);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, k;
cin >> n >> k;
cout << getFactorial(n) / (getFactorial(n-k) * getFactorial(k));
}
재귀함수를 이용해 팩토리얼을 구하는 함수를 만들어 주었다
'Programing > 백준, 프로그래머스(C++)' 카테고리의 다른 글
[C++][백준 2292] 벌집 (0) | 2025.01.03 |
---|---|
[C++][백준 2231] 분해합 (0) | 2025.01.03 |
[C++][백준 2609] 최대공약수와 최소공배수 (0) | 2025.01.03 |
[C++][백준 1546] 평균 (0) | 2025.01.03 |
[C++][백준 1259] 팰린드롬수 (0) | 2025.01.03 |