1289 : 简单的阶乘
Time Limit: 1 Sec Memory Limit: 128 MB Submitted: 139 Solved: 110Description
一个数\(n\)的阶乘用感叹号表示,定义为 \(n!=1\times 2\times 3\times \dots \times (n-1) \times n\) ,计算所给数的阶乘.
Input
\(0\leq n \leq 12\).
Output
输出\(n!\).
Sample
0 ##CASE## 5
1 ##CASE## 120
Hint
Source
算法竞赛入门-函数-递归Author
CSGrandeur