阶乘:
规律:N!=(n-1)! * n;
出口 n==1 或 n==0 return 1;
public static int getResult(int n){
if(n<0)
throw new validateException("非法参数");
}
if(n==1 || n==0){
return 1;
return getResult(n-1)*n
N的阶乘 和fibn数列
原文:https://www.cnblogs.com/wzjdbk/p/15021975.html