HDU 1042 N! (大整数阶乘)

这道题开始并不会,是看了别人的代码,自己又改造了一下,代码如下:(PS:这个时候自带大整数运算的java就有优势了)

#include <bits/stdc++.h>

using namespace std;

const int N = 20000 + 10;

int ans[N];
void fact(int n)
{
    ans[0] = ans[1] = 1;
    int tot = 1;
    for(int i = 1; i <= n; i++)
    {
        int val = 0;
        for(int j = 1; j <= tot; j++)
        {
            ans[j] = ans[j] * i + val;
            val = ans[j] / 10000, ans[j] %= 10000;
        }
        if(val) ans[++tot] = val;
    }
    for(int i = tot; i >= 1; i--)
    {
        if(i == tot) printf("%d", ans[i]);
        else printf("%04d", ans[i]);
    }
    printf("\n");
}
int main()
{
    int n;
    while(~ scanf("%d", &n))
    {
        fact(n);
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值