Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150108 曾钰涵 满足条件的数II C++ Compile Error 0 MS 0 KB 219 2026-03-22 11:43:21

Tests(0/0):


Code:

#include<bits/stdc++.h> #include<cmath> using namespace std; int main(){ double sn=0; int k,n=1; cin>>k; while(sn<=k){ sn+=pow(n+1,-1); n++; cout<<n<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:1: error: expected '}' at end of input
 }
 ^