下面用程序來完成這一計算過程,我們要寫一個計算階乘的函數 factorial ,先把Base Case這種最簡單的情況寫進去: int factorial(int n) { if (n == 0) return 1; }.
確定! 回上一頁