Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102993 翁思宸 13分数求和 C++ Wrong Answer 1 MS 272 KB 479 2024-12-27 19:29:48

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 a0=2,b0=1,a,b,n; double sum=a0*1.0/b0; cin>>n; for(int i=2;i<=n;i++){ a=a0+b0; b=a0; sum+=a*1.0/b; a0=a; b0=a; } printf("%.4lf",sum); return 0; }


Run Info:

------Input------
8
------Answer-----
13.2437
------Your output-----
15.5000