Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102996 翁思宸 13分数求和 C++ Accepted 1 MS 280 KB 479 2024-12-27 19:32:54

Tests(10/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=b; } printf("%.4lf",sum); return 0; }