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

Problem H: 计算数列和2/1,3/2,5/3,8/5......

时间:2018-10-21 14:18:30      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   ble   clu   return   span   pre   int   turn   class   

#include<stdio.h>
int main(){
    int i,n;
    scanf("%d",&n);
    float sum=0.0;
    float a=1;
    float b=2;
    for(i=1;i<=n;i++){
        sum=sum+1.0*b/a;
        int c=a;
        a=b;
        b=c+b;
    }
    printf("s=%.2f\n", sum);
    return 0;
}

 

Problem H: 计算数列和2/1,3/2,5/3,8/5......

标签:style   ble   clu   return   span   pre   int   turn   class   

原文地址:https://www.cnblogs.com/chenlong991223/p/9824773.html

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