返回列表 發帖

APCS 觀念題 10510 模擬考 24

本帖最後由 李泳霖 於 2022-8-6 11:19 編輯

下列 G() 為遞迴函式 ,G(2, 6) 執行後回傳值為何?
  1. int G(int a, int x)
  2. {
  3.     if (x == 0)
  4.         return 1;
  5.     else
  6.         return (a * G(a, x-1));
  7. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表