0
点赞
收藏
分享

微信扫一扫

递归调用。

千白莫 2022-03-11 阅读 167
java
package method;

public class Demo6 {
    //2!  2*1
    //3! 3*2*1
    public static void main(String[] args) {
        System.out.println(f(5));

    }
//1!  1
    //5!   5*4*3*2*1
    public static int f(int n){
        if(n==1) {
            return 1;
        }else{
            return  n*f(n-1);
        }
    }
}
举报

相关推荐

0 条评论