+ 2
How to make a root more than 2?
6 Answers
+ 4
pow(x, 1 / n)
+ 3
the answer is in your line 65
+ 2
i give the input "25 ~ 2"
but the output "1", it supposed to be "5"
sum = pow (a, 1/b);
+ 2
pow(81, 0.25)
gives 3
https://code.sololearn.com/cocdPI30X130/?ref=app
+ 2
Convert it into decimal first
c = 1 / b;
sum = pow(a, c);
+ 1
oh, ok ty