c语言计算s = 1!+2!+3!+…+n!的源程序,书写阶乘函数,并调用求上面式子
时间: 2023-11-27 22:48:19 浏览: 85
C语言求n的阶乘(n!).txt
以下是C语言计算s = 1!+2!+3!+…+n!的源程序,包括书写阶乘函数并调用求上面式子的过程:
```c
#include <stdio.h>
// 阶乘函数
int factorial(int n) {
int result = 1;
for (int i = 1; i <= n; i++) {
result *= i;
}
return result;
}
int main() {
int s = 0;
int n = 10; // 假设n为10
for (int i = 1; i <= n; i++) {
s += factorial(i);
}
printf("s = %d\n", s); // 输出:s = 4037913
return 0;
}
```
阅读全文