本题要求编写程序,计算N的阶乘。
输入格式:
输入在一行中给出一个不超过12的正整数N。
输出格式:
在一行中输出阶乘的值。
输入样例:
4
输出样例:
24
cpp
#include <stdio.h>
int Fac(int x){
if(x==1) return 1;// 递归出口
return x*Fac(x-1);// 递归
}
int main(){
int n;scanf("%d",&n);
int ans=Fac(n);
printf("%d",ans);
return 0;
}