m having trouble with the pow function. The equation is A=P*((1+R)/T)^T were “^” is to the power of. How would i use the pow function, i only see examples that are 4 to the 5th power, nothing like what i have to do
m having trouble with the pow function. The equation is A=P*((1+R)/T)^T were ^ is
Share
it would simply be
A = pow((1+R)/T , T) * P;