6-8 简单阶乘计算

题目

https://pintia.cn/problem-sets/14/problems/740

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

程序样例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>

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;
}

/* 你的代码将被嵌在这里 */

关键代码

1
2
3
4
5
6
7
8
9
10
int Factorial( const int N ){
if(N<0){
return 0;
}
int res = 1;
for(int i =1;i<=N; i++){
res *= i;
}
return res;
}