码迷,mamicode.com
首页 > 编程语言 > 详细

Java经典编程题50道之二十二

时间:2017-06-05 14:11:40      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:bsp   sys   方法   out   stat   oid   递归   main   ==   

利用递归方法求5!。

public class Example22 {
    public static void main(String[] args) {
        int n = 5;
        long s = sum(n);
        System.out.println(n + "!= " + s);
    }

    public static long sum(int n) {
        long s = 1;
        if (n == 1||n==0) {
            s = 1;
        } else {
            s = n * sum(n - 1);
        }
        return s;
    }
}

Java经典编程题50道之二十二

标签:bsp   sys   方法   out   stat   oid   递归   main   ==   

原文地址:http://www.cnblogs.com/qubo520/p/6944250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!