2824: 【例29.1】 求阶乘
Memory Limit:64 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:76
Solved:56
Description
利用for循环求$n!$的值。n提示,$n!=1×2×...×n$。
Input
输入一个正整数$n$,对于所有数据,$1≤n≤20$。
Output
输出$n!$的值。
Sample Input Copy
4
Sample Output Copy
24