Question: Write a recursive function exp as blow to perform exponentiation. Return Xm, assuming m >= 0 23 = 2 * 2*2, Bx = B *
Write a recursive function exp as blow to perform exponentiation.
Return Xm, assuming m >= 0
23 = 2 * 2*2, Bx = B * Bx-1, x = 0
public long exp(int base, int expo) {
}
Submit only the function exp in Java file.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
