用C语言编写函数fun,它的功能是:计算并输出下式的和:1!+2!+3!+4!+5!+…+n!。主函数输入n,调用fun输出1!+2!+3!+4!+5!+…+n!的值。
时间: 2023-11-24 07:52:12 浏览: 205
C语言编程-编写函数fun求1!+2!+3!+ …… +n!的和,在main函数中由键盘输入n值,并输出运算结果;
5星 · 资源好评率100%
以下是用C语言编写的函数fun,它的功能是计算并输出1!+2!+3!+4!+5!+…+n!的和:
```c
#include <stdio.h>
int factorial(int num) {
int fact = 1;
for (int i = 1; i <= num; i++) {
fact *= i;
}
return fact;
}
int calculateSum(int n) {
int sum = 0;
for (int i = 1; i <= n; i++) {
sum += factorial(i);
}
return sum;
}
int main() {
int n;
printf("Enter the value of n: ");
scanf("%d", &n);
int result = calculateSum(n);
printf("The sum of 1!+2!+3!+4!+5!+...+n! is: %d\n", result);
return 0;
}
```
阅读全文