Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
55510 yuboyuan 求分数序列和 C++ 解答错误 0 MS 244 KB 236 2024-11-07 21:13:19

Tests(0/1):


#include<iostream> #include<iomanip> using namespace std; int main() { int n; float x=2,s=0; for(int i=1;i<=n;i++) { s+=x; x=1/x+1; } cout<<fixed<<setprecision(4)<<s; return 0; }


测评信息: