Java階乘遞歸

public static int friSum(int n) { if(n <= 1) { return 1; }else { return n * friSum(n - 1); } }
相關文章
相關標籤/搜索