标题:请教.
取消只看楼主
黑夜的黑
Rank: 1
等 级:新手上路
帖 子:35
专家分:5
注 册:2008-3-31
结帖率:100%
 问题点数:0 回复次数:0 
请教.
#include<stdio.h>
int Fabonacci(int i)
 { int ant;
     if(i==1||i==0)
      ant=1;
      else
        ant=Fabonacci(i)+Fabonacci(i-1);
         return ant;
 }
 
 float Fabonacci_sum (int n)
  {
      float sum=0;
      int i;
       for(;n>=1;n--)
        sum+=1.0/Fabonacci(n);
        return sum;
  }
  
  main()
   {
      int i;
      float s;
        while(scanf("%d",i)!=EOF)
         {
          s=Fabonacci_sum(i);
         printf("%f",s);
         }
         return(0);
   }
        
.................................
得不到结果....
搜索更多相关主题的帖子: int sum ant Fabonacci float 
2008-04-17 15:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-209589-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.142151 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved