sum.c 利用遞迴函式來計算出 10 + 9 + 8 + ... + 3 + 2 + 1 的結果。流程圖呼叫函式 sum(n) n<=0 return n + sum(n) false true return 0 結束遞迴呼叫回傳值逐層回傳 ...
確定! 回上一頁