JAVA今日20218.19
JAVA 递归
package JAVASE.method;
public class mt04 {
//尽量不要用递归
public static void main(String[] args) {
System.out.println(f(5));
}
//5! 5*4*3*2
public static int f(int n){
if (n==1){
return 1;
}else{
return n*f(n-1);
}
}
}
2021.8.19

浙公网安备 33010602011771号