荒天帝


私信TA

用户名:ljhabc

访问量:4035

签 名:

等  级
排  名 433
经  验 4895
参赛次数 1
文章发表 126
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<bits/stdc++.h>

using namespace std;


float seqSum(short n); //有规律数列求和

int main() {

    short N = 0;

    cin >> N;

    cout << fixed << setprecision(2) << seqSum(N) << endl;

    return 0;

}

float seqSum(short n) {

    float res = 0; //求和

    short numerator = 2; //分子,初始为2

    short denominator = 1; //分母,初始为1

    for (short i = 0; i < n; i++) {

        res += (float)numerator / denominator; //注意和(float)(numerator / denominator)的区别

        short tempDen = denominator; //分母的副本

        denominator = numerator; //数列下一个数的分母是上一个数的分子

        numerator += tempDen; //数列下一个数的分子是上一个数的分子和分母之和

    }

    return res;

}


 

0.0分

0 人评分

  评论区

  • «
  • »