C语言 递归求阶乘

C语言 递归求阶乘

c语言中如何表示阶乘相关介绍,#include<; int fact(int n); int fact(int n) { if(n<=1) { return 1; } else { return n*fact(n-1)…

/cache