6-8 简单阶乘计算
题目
https://pintia.cn/problem-sets/14/problems/740
本题要求实现一个计算非负整数阶乘的简单函数。
程序样例
1 |
|
关键代码
1 | int Factorial( const int N ){ |
https://pintia.cn/problem-sets/14/problems/740
本题要求实现一个计算非负整数阶乘的简单函数。
1 | #include <stdio.h> |
1 | int Factorial( const int N ){ |