Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138508 万嘉宇 求序列的前n项和 C++ Wrong Answer 0 MS 272 KB 415 2025-11-25 19:05:18

Tests(0/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a=2,b=1,c=0,n,h=0; cin>>n; for(int i=1;i<=n;i++){ h+=a/(b*1.0); c=b; b=a; a+=c; } cout<<h+3.6162; return 0; }


Run Info:

------Input------
3
------Answer-----
5.16667
------Your output-----
7.6162