实现数字的阶乘和阶乘后进行相加 (1!+2!+3!.......+n!)(新)

求n的阶乘 n!=web #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> int Factor(int n){ int result=1; for (int i = 1; i <= n; i++){ result *= i; } return result; } in
相关文章
相关标签/搜索