本题要求实现一个计算非负整数阶乘的简单函数。
函数接口定义:
int Factorial( const int N );
其中N
是用户传入的参数,其值不超过12。如果N
是非负整数,则该函数必须返回N
的阶乘,否则返回0。
裁判测试程序样例:
#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;
}/* 你的代码将被嵌在这里 */
输入样例:
5
输出样例:
5! = 120
代码:
int Factorial(const int N){int result=1;if(N>12||N<0)return 0;else{for(int i=1;i<=N;i++){result*=i;}return result;}
}
愿我们都能成为我们想要去成为的人!
披星戴月走过的路,终将繁华满地!
苦尽甘来的那一天,山河星月都作贺礼!