利用递归方法求5!。


/**
 * 利用递归方法求5!。
 */
public class Test0309 {

    public static void main(String[] args){

        System.out.println(new Test0309().getNum(5));

    }

    public int getNum(int n){
        int result = n;
        if(n > 1){
           result = n*getNum(n-1);
        }else{
            result = 1;
        }
        return result;
    }

}

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM