Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
using namespace std; int main() { cout << cbrt(0) << "\n"; cout << cbrt(1) << "\n"; cout << cbrt(27) << "\n"; cout << cbrt(0.64) << "\n"; cout << cbrt(-27) << "\n"; return 0; }
0
1
3
0.861774
-3