求赞!
#include <bits/stdc++.h>
using namespace std;
double n,l=-10000,r=10000;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n;
while(r-l>1e-8) {
double mid=(l+r)/2;
if(mid*mid*mid>=n) r=mid;
else l=mid;
}
cout<<fixed<<setprecision(6)<<l;
return 0;
}