首页 > 代码库 > 递归算法题

递归算法题

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;
}    

 

递归算法题