Exemple #1
0
 public static double C(int m, int n)
 {
     return(FinMath.Fact(n) / (FinMath.Fact(m) * FinMath.Fact(n - m)));
 }