Tree Recursion · #include <stdio.h> · // It is called multiple times inside the fibo_num function · int fibo_num (int num) · { · if (num <= 1) · return num; · return ...
確定! 回上一頁