c#遞迴實現 階乘

過朢發表於2024-04-05

public static long Face(int n) {
if (n <= 1)
{
return 1;
}
else {
return n * Face(n-1);
}
}

相關文章