Problem A: 【递归】求阶乘

Problem A: 【递归】求阶乘

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 3192  Solved: 1375
[Submit] [Status] [Web Board] [Creator:]

Description

 利用递归函数求阶乘

本题要求实现1个自定义函数:求阶乘函数

函数接口定义:

long long fac(int);

裁判测试程序样例:

Input

输入正整数n(n<=20)

测试数据有多组,处理到输入结束

Output

每行一个输出结果。

Sample Input Copy

1
2
3
4
5

Sample Output Copy

1
2
6
24
120