阶乘:
规律: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
2024-01-03 21:26:46
阶乘:
规律: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