/*------------------------------------------------------- 【程序填空】 --------------------------------------------------------- 功能:下面的程序是求1!+3!+5!+……+n!的和。 -------------------------------------------------------*/ #include <stdio.h> main() { long int f,s; int i,j,n; /**********FILL**********/ _____ scanf("%d",&n); /**********FILL**********/ for(i=1;i<=n; _____ ) { f=1; /**********FILL**********/ for(j=1; _____;j++) /**********FILL**********/ _____ s=s+f; } printf("n=%d,s=%ld\n",n,s); }
时间: 2023-08-24 08:05:52 浏览: 50
#include <stdio.h>
main() {
long int f,s;
int i,j,n;
s=0; //初始化s为0
printf("请输入n:"); //输出提示信息
scanf("%d",&n); //读入n的值
for(i=1;i<=n;i+=2) //i每次增加2
{
f=1;
for(j=1;j<=i;j++)
{
f=f*j; //计算i的阶乘
}
s=s+f; //累加i的阶乘
}
printf("n=%d,s=%ld\n",n,s); //输出n和s的值
}
阅读全文