如何用c语言分别输出1到5的阶乘,并且输出它们的和?
5个回答
展开全部
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int CalNJieCheng(int n)
{
int nLoop,nResult;
nResult = 1;
for(nLoop=1;nLoop<=n;nLoop++)nResult = nResult * nLoop;
return nResult;
}
int main()
{
int nLoop;
int nTmp,nSum;
nSum = 0;
for(nLoop=1;nLoop<=5;nLoop++)
{
nTmp = CalNJieCheng(nLoop) ;
printf("%d的阶乘值为:%d!=%d\n",nLoop,nLoop,nTmp);
nSum += nTmp;
}
printf("5以内数字阶乘求和的值为:%d\n",nSum);
system("PAUSE");
return 0;
}
#include<string.h>
#include<stdlib.h>
int CalNJieCheng(int n)
{
int nLoop,nResult;
nResult = 1;
for(nLoop=1;nLoop<=n;nLoop++)nResult = nResult * nLoop;
return nResult;
}
int main()
{
int nLoop;
int nTmp,nSum;
nSum = 0;
for(nLoop=1;nLoop<=5;nLoop++)
{
nTmp = CalNJieCheng(nLoop) ;
printf("%d的阶乘值为:%d!=%d\n",nLoop,nLoop,nTmp);
nSum += nTmp;
}
printf("5以内数字阶乘求和的值为:%d\n",nSum);
system("PAUSE");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先解决5的阶乘;
然后是4;
……
最后求和即可。
然后是4;
……
最后求和即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include "stdafx.h"
int main()
{
int temp=5;
int temp2=1;
int temp3;
int temp4=0;
for(int i=1;i<=5;i++)
{
temp3 = temp2;
temp2 = temp2*(i+1);
printf("%d*%d=%d\n",temp3,i+1,temp2);
temp4+=temp2;
}
printf("%d\n",temp4);
return 0;
}
int main()
{
int temp=5;
int temp2=1;
int temp3;
int temp4=0;
for(int i=1;i<=5;i++)
{
temp3 = temp2;
temp2 = temp2*(i+1);
printf("%d*%d=%d\n",temp3,i+1,temp2);
temp4+=temp2;
}
printf("%d\n",temp4);
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询