4-8 简单阶乘计算

Attention: 如果喜欢我写的文章,欢迎来我的github主页给star
Github:github.com/MuziJin

本题要求实现一个计算非负整数阶乘的简单函数。

函数接口定义:

int Factorial( const int N );

其中N是用户传入的参数,其值不超过12。如果N是非负整数,则该函数必须返回N的阶乘,否则返回0。

裁判测试程序样例:

#include 

int Factorial( const int N );

int main()
{
    int N, NF;
                
    scanf("%d", &N);
    NF = Factorial(N);
    if (NF)  printf("%d! = %d\n", N, NF);
    else printf("Invalid input\n");

    return 0;
}

输入样例:

5

输出样例:

5! = 120

Code

int Factorial( const int N ) //递归思想,注意边界条件 
{
    int temp = 0;
    if ( N>=0)
    {
        if( N==1 || N==0)   temp = 1;
        else temp = N * Factorial(N-1);
    }
    return temp;
}

转载请注明出处:github.com/MuziJin

你可能感兴趣的:(4-8 简单阶乘计算)