求組合數公式為:
編一程式,輸入m和n
的值,求組合數。要求分別定義求階乘和求組合的函式,求組合數的函式呼叫求階乘的函式來實現求解,在
main()
函式中,負責輸入輸出及呼叫求組合數的函式。
#include using namespace std;
int fac(int);
int main()
{int m,n;
float c;
cout>n;
c=fac(m)/(fac(n)*fac(m-n));
cout<
int main()
{ int m,n;
float c;
cout>n;
if(m>n)
{c=fac(m)/(fac(n)*fac(m-n));
cout<
練習2 18 求組合數
練習2 18 求組合數 15 分 本題要求編寫程式,根據公式c n m m n m n 算出從n個不同元素中取出m個元素 m n 的組合數。建議定義和呼叫函式fact n 計算n 其中n的型別是int,函式型別是double。輸入在一行中給出兩個正整數m和n m n 以空格分隔。按照格式 resul...
練習2 18 求組合數
練習2 18 求組合數 15 分 本題要求編寫程式,根據公式c n m m n m n 算出從n個不同元素中取出m個元素 m n 的組合數。建議定義和呼叫函式fact n 計算n 其中n的型別是int,函式型別是double。輸入格式 輸入在一行中給出兩個正整數m和n m n 以空格分隔。輸出格式 ...
練習2 18 求組合數
本題要求編寫程式,根據公式c n m m n m n 算出從n個不同元素中取出m個元素 m n 的組合數。建議定義和呼叫函式fact n 計算n 其中n的型別是int,函式型別是double。輸入在一行中給出兩個正整數m和n m n 以空格分隔。按照格式 result 組合數計算結果 輸出。題目保證...