Complete a recursive definition of the following method
/**Precondition: n >= 0.Returns 10 to the power n.*/public static int computeTenToThe(int n)
Use the following facts about xn:
xn=(xn/2)2 when n is even and positive
xn=x(x(n−1)/2)2 when n is odd and positive
x0 = 1
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.