0 of 1 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include <iostream> using namespace std; int Fac(int); int m,n; int main() { cin>>m>>n; cout<<Fac(m)/(Fac(m-n)*Fac(n)); return 0; } int Fac(int n){ int s=1; for (int i = 1; i <= n; i++) { s=s*i; } return s; } |
计算组合数,输入两个整数5 3,该程序输出为