Task Description
請寫一個「遞迴函式」,讓使用者可以輸入一個正整數 n,並計算 n! 的值。
提示:n! 可以表示為 n (n-1) (n-2) ... 2 * 1。
Input Format
測資給定一正整數n。
Output Format
印出n!的值。
Sample Input
5
Sample Output
120
Task Description
請寫一個「遞迴函式」,讓使用者可以輸入一個正整數 n,並計算 n! 的值。
提示:n! 可以表示為 n (n-1) (n-2) ... 2 * 1。
Input Format
測資給定一正整數n。
Output Format
印出n!的值。
Sample Input
5
Sample Output
120