每一個C 程式都是由函式組成的, 由main() 函式開始執行, main() 函式處理 ... int sum(int n) { if (n==1) return 1; else return sum(n-1)+n; }.
確定! 回上一頁