Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102992 | 翁思宸 | 13分数求和 | C++ | Wrong Answer | 0 MS | 272 KB | 473 | 2024-12-27 19:26:06 |
#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=0; cin>>n; for(int i=2;i<=n;i++){ a=a0+b0; b=a0; sum+=a*1.0/b; a0=a+b; b0=a; } printf("%.4lf",sum); return 0; }
------Input------
8
------Answer-----
13.2437
------Your output-----
11.1871