计算大数的阶乘的程序

时间:2015-09-24 04:36:40

标签: c factorial

这是网站上的测试,这是代码

#include <stdio.h>

void Print_Factorial ( const int N );

int main()
{
    int N;
    scanf("%d",&N);
    Print_Factorial(N--);

    return 0;
}

/* your code will be put in here*/ 

#include <math.h>

int getFactLength(int N){
    double length = 0;
    while(N){
        length += log10(N--);
    }
    return (int)length+1;
}

void printFact(int fact[], int length){
    while(length--){
        printf("%d",*fact++);
    }
}

void initialNums(int nums[], int length, int num){
    while(length--){
        *nums++ = num;
    }
}

void Print_Factorial( const int N ){
    if(N < 0){
        printf("Invalid input");
        return ;
    }
        int NT = N;
    if(NT>=0 && NT<15){
        int fact = 1;
        while(NT){
            fact *= NT--;
        }
        printf("%d",fact);
        return ;
    }

    int length = getFactLength(N);
    int fact[length];
    initialNums(fact, length, 0);
    fact[length-1] = 1;
    int lastNoneZeroIndex = length-1;
    while(NT > 1){
        int lengthT = length;
        int carry = 0;
        while(lengthT-- > lastNoneZeroIndex){
            int result = NT*fact[lengthT] + carry;
            fact[lengthT] = result % 10;
            carry = result / 10;
        }
        while(carry){
            fact[--lastNoneZeroIndex] = carry % 10;
            carry /= 10;
        }
        NT--;
    }

    printFact(fact, length);
}

我使用020的值来测试它,所有这些都是正确的。但是当我在该网站上提交它时,测试用例总是不会通过。我不知道那个案子是什么。但是,有5个案例,所有测试案例都在0到1000之间,其中两个不超过15个,其中一个是否定的,其中一个使用大部分时间通过,所以我认为没有通过的案例是一个小于1000的数字。这就是我所知道的,我无法想象1000通过了,但是小于1000的数字并没有通过。我不知道我可爱的代码有什么问题。我希望你能看到我的代码,并发现一些错误。

1 个答案:

答案 0 :(得分:0)

在事实变量中创建溢出,这里使用int类型作为事实变量。 对于输入13,14,它给出了错误的答案。

解决方案:

long long int fact = 1;

,或者

更改条件 - if(NT>=0 && NT<13)