打卡28天
一般基数较小时才用递归,若基数较大则用递归会使得内存压力过大,所以能不用递归就不用递归。
package com.sun.method; public class Demo06 { public static void main(String[] args) { System.out.println(f(5)); } //5!=5*4*3*2*1 public static int f(int n){ if (n==1) return 1; else return n*f(n-1); } }