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

posted @ 2021-08-19 15:36  Walf1234  阅读(35)  评论(0)    收藏  举报