美文网首页
java :递归

java :递归

作者: 冰J冰 | 来源:发表于2016-01-21 11:02 被阅读75次

public class BRRead {
   public static void main(String args[]) 
   {
        System.out.print(f(30));
   }

   public static int f(int x){

            if (x == 1 || x == 2) {
                
                return 1;
            }else{

                return f(x-1) + f(x-2);
            }
   }
}


f(x) = f(x-1)+f(x-2); x>=3;
f(1) = 1;
f(2) = 1;


相关文章

网友评论

      本文标题:java :递归

      本文链接:https://www.haomeiwen.com/subject/niplkttx.html