| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143800 | 唐俊逸 | 求序列的前n项和 | C++ | Wrong Answer | 1 MS | 268 KB | 453 | 2026-01-17 19:36:23 |
#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 n,fz=2,fm=1,t; double s=2.0; cin>>n; for(int i=2;i<=n;i++){ t=fz; fz=fm+t; fm=t; s+=fz*1.0/fm; } printf("%.4lf",s); return 0; }
------Input------
3
------Answer-----
5.16667
------Your output-----
5.1667