遞迴(Recursive) 是程式中包含自我呼叫(self-calling)。 function Recursive(int x){. int y = 0; //y 為區域變數 ... if(x != 0){. Recursive(y);.
確定! 回上一頁