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

递归算法题

时间:2017-06-18 00:03:45      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:sys   void   依次   方式   pre   递归算法   nbsp   递增   int   

1.第一个人10岁,第二个人比第一个人大2岁,依次递增,请用递归方式算出第8个人多大?

public static void main(String[] args){
       System.out.println(computeAge(8)); 
}
public static int computeAge(int n){
       if(n==1)
            return 10;
       return computeAge(n-1)+2;
}    

 

递归算法题

标签:sys   void   依次   方式   pre   递归算法   nbsp   递增   int   

原文地址:http://www.cnblogs.com/lxcmyf/p/7041767.html

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