利用求阶乘函数Fact(),编程计算并输出1! + 2! + …+ n!的值。
时间: 2023-11-17 19:05:22 浏览: 127
可以使用循环结构和递归结构来实现求阶乘函数Fact(),然后再利用循环结构计算1! + 2! + …+ n!的值。具体代码如下:
```
#include <stdio.h>
// 求阶乘函数
int Fact(int n) {
if (n == 0 || n == 1) {
return 1;
} else {
return n * Fact(n - 1);
}
}
int main() {
int n, sum = 0;
printf("请输入n的值:");
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
sum += Fact(i);
}
printf("1! + 2! + ... + %d! = %d\n", n, sum);
return 0;
}
```
在上面的代码中,Fact()函数使用递归结构来实现求阶乘,循环结构用于计算1! + 2! + …+ n!的值。在主函数中,首先输入n的值,然后使用for循环计算1! + 2! + …+ n!的值,并输出结果。
相关问题
C语言,利用求阶乘函数fact,编程计算并输出1!+2!+...+n!的值
以下是C语言实现计算1!+2!+3!+……+n!的代码,其中利用了求阶乘函数fact(n):
```c
#include <stdio.h>
double fact(int n) {
double res = 1;
for (int i = 1; i <= n; i++) {
res *= i;
}
return res;
}
double fun(int n) {
double res = 0;
for (int i = 1; i <= n; i++) {
res += fact(i);
}
return res;
}
int main() {
int n;
printf("Enter n: ");
scanf("%d", &n);
printf("%.0f\n", fun(n));
return 0;
}
```
利用求阶乘函数Fact(),编程计算并输出1!+2!+……+n!的值
以下是利用求阶乘函数Fact(),编程计算并输出1!+2!+……+n!的值的C语言代码:
```c
#include <stdio.h>
int Fact(int n) {
if (n == 0 || n == 1) {
return 1;
} else {
return n * Fact(n - 1);
}
}
int main() {
int n, sum = 0;
printf("请输入一个正整数n:");
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
sum += Fact(i);
}
printf("1!+2!+...+%d!的值为:%d\n", n, sum);
return 0;
}
```
运行结果如下:
```
请输入一个正整数n:5
1!+2!+...+5!的值为:153
```
阅读全文