2

杯总  •  2年前


include <bits/stdc++.h>

using namespace std;

int main() { int k,n=0; cin>>k; double sn=0; while (sn<k) { n++; sn+=1.0/double(n); } cout<<n<<endl; return 0; }


评论: