本题要求实现一个打印非负整数阶乘的函数。

函数接口定义:

void Print_Factorial ( const int N );

其中N是用户传入的参数,其值不超过1000。如果N是非负整数,则该函数必须在一行中打印出N!的值,否则打印“Invalid input”。

裁判测试程序样例:

#include <stdio.h>

void Print_Factorial ( const int N );

int main()
{
int N; scanf("%d", &N);
Print_Factorial(N);
return 0;
} /* 你的代码将被嵌在这里 */

输入样例:

15

输出样例:

1307674368000

现学现卖,敲一遍高精度阶乘
 #include <stdio.h>
void Print_Factorial ( const int N );
int main()
{
int N; scanf("%d", &N);
Print_Factorial(N);
return ;
}
void Print_Factorial ( const int N )
{
if(N<){
printf("Invalid input\n");
return ;
}
int d[];
d[]=;
int t=,tmp=,carry=;
for(int i=;i<=N;i++){
for(int j=;j<=t;j++){
tmp=d[j]*i+carry;
d[j]=tmp%;
carry=tmp/;
}
while(carry!=){
d[++t]=carry%;
carry/=;
}
}
for(int i=t;i>=;i--){
printf("%d",d[i]);
}
printf("\n");
}
05-11 20:20