码迷,mamicode.com
首页 > 其他好文 > 详细

Jav实现F(n)=F(n-1)+F(n-2)+.....+F(1)+1

时间:2017-08-16 15:40:15      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:nbsp   private   eth   int   generate   bsp   for   stat   ted   

private static int func(int count) {
  // TODO Auto-generated method stub
  int cou = 0;
  if(count==1){
   cou=1;
  }
  else if(count==2){
   cou=2;
  }
  else{
   for(int i=1;i<count;i++){
    cou+=func(count-i);
   }
   cou=cou+1;
  }
  return cou;
 }

Jav实现F(n)=F(n-1)+F(n-2)+.....+F(1)+1

标签:nbsp   private   eth   int   generate   bsp   for   stat   ted   

原文地址:http://www.cnblogs.com/blythe/p/7373107.html

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