如何用c++求100的阶乘,在线等,急

 我来答
White_MouseYBZ
2017-05-24 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6622万
展开全部

如果要近似的,可以这么做:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream>
using namespace std;
int main(int argc,char *argv[]){
    int i;
    double s;
    for(s=i=1;i<101;s*=i++);
    cout << "100! = " << s << endl;
    return 0;
}

如果要精确的,就得麻烦点:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream>
#include "math.h"
using namespace std;
int main(int argc,char *argv[]){
    int i,j,n,*p;
    double x;
    for(x=0.0,i=2;i<101;x+=log10(i++));
    if((p=new int[x/=6,n=(int)x+(x!=(int)x)])==NULL){
        cout << "Application memory failure...\n";
        return 0;
    }
    for(i=0;i<n;p[i++]=0);
    for(p[n-1]=1,i=2;i<101;i++){
        for(j=0;p[j]==0;j++);
        while(j<n)
            p[j++]*=i;
        for(j--;j>0;j--)
            if(p[j]>999999)
                p[j-1]+=p[j]/1000000,p[j]%=1000000;
    }
    cout << "100! = " << p[0];
    cout.fill('0');
    for(i=1;i<n;cout.width(6),cout << p[i++]);
    delete []p;
    cout << endl;
    return 0;
}
youxinsyu
2017-05-24 · TA获得超过304个赞
知道小有建树答主
回答量:404
采纳率:0%
帮助的人:222万
展开全部
举例说明算法: 1!+2!+3!+……+n! =1+2*(1+3*(1+4*(1+5(1+......(1+(n-1)*(1+n))......)))) 不过当n=100貌似会溢出。嗯。 因此要实现一个大数乘法的函数,然后就很easy了 #includevoid main(){ long sum; int n=100; sum=n; while(n!=1) { sum+=1
追问
求完整代码
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
NeoWoz
2017-05-24 · 超过15用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:25.2万
展开全部
用递归算法,我这是C#语法。
public double calc(int n)
{
if (n == 1)
{
return 1;
}
else
{
return n * calc(n - 1);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式