How to use cbrt() function to get the cubic root of N in C++

1 Answer

0 votes
#include <iostream>
#include <cmath>

using namespace std;

int main()
{
	double n = 27, rv;
	
	rv = cbrt(n);

	cout << "cbrt(" << n << ") = " << rv << endl;
	cout << "cbrt(-0.125) = " << cbrt(-0.125) << endl;
	cout << "cbrt(1000.0) = " << cbrt(1000.0) << endl;

	return 0;
}

// 3 * 3 * 3 = 27
// 10 * 10 * 10 = 1000

/*
run:

cbrt(27) = 3
cbrt(-0.125) = -0.5
cbrt(1000.0) = 10

*/

 



answered Mar 13, 2016 by avibootz
edited Mar 13, 2016 by avibootz

Related questions

1 answer 157 views
1 answer 154 views
3 answers 150 views
150 views asked Jan 26, 2023 by avibootz
1 answer 168 views
1 answer 174 views
...