在一個語言中,函式除了可以呼叫其他函式外,也可以呼叫自己本身函式,此種方式稱之為 ... 範例:算階乘#include < stdio.h > int fact(int n) { if ( n<=1 ) return 1; ...
確定! 回上一頁