您的位置:首页 > 技术中心 > 其他 >

c语言计算阶乘累加和

时间:2020-05-13 10:45

具体代码:

# include "stdio.h"
void main()
{
  int n,i,j,sum=0,t=1;
  printf("please enter a number:");
  scanf("%d",&n);
  for(i=0;i<n;t=1,i++)   //这里的循环事件是重点!每循环一次重新给t赋值。
    { 
       for(j=n-i;j>0;j--)
    {
t*=j;
}
   sum+=t;
   }
   printf("\n1!+....+%d!=%d",n,sum);
}

推荐教程:c语言教程

以上就是c语言计算阶乘累加和的详细内容,更多请关注gxlsystem.com其它相关文章!

热门排行

今日推荐

热门手游