I am trying to input an equation which uses the pow (power)function.
I know that for x^5 the coding is: pow(x, 5)
However, the equation and coding I am inputting needs to include:
(x*y)^(5/3)
How do I enter (x*y)^(5/3) in the form of C++ code?
Thanks in advance.