1041: 【基础练习】整数阶乘计算
金币值:
1
Time Limit:1.000 s
Memory Limit:512 M
Solved:63
Submit:109
正确率:57.80% Creator:
Description
从标准输入中输入整数n,计算从n的阶乘n!
阶乘的定义为,n! = n * (n-1) * (n-2) * ... * 3 * 2 * 1
特别注意:0! = 1。
Input
输入一行包含一个正整数n(n<=20)。
Output
输出一个数字,表示阶乘结果。
Sample Input Copy
5
Sample Output Copy
120
HINT
1 <= n <= 10000。