C语言中阶乘用什么符号表示啊?


C语言中阶乘用什么符号表示啊?

文章插图
int fun_A(int n) // 阶乘{ int iA = 1; while (1 < n) { iA *= n; n--; } return iA;}int fun_C(int n, int m) // 从n中选择m选择方法种类{ int iC = 0; iC = fun_A(n) / (fun_A(n-m)*fun_A(m)); return iC;}
【C语言中阶乘用什么符号表示啊?】

    推荐阅读