Question: Write a recursive method named power that accepts two integers representing a base and an exponent and returns the base raised to that exponent. For

 Write a recursive method named power that accepts two integers representing

Write a recursive method named power that accepts two integers representing a base and an exponent and returns the base raised to that exponent. For example, the call of power (3, 4) should return 34 or 81. If the exponent passed is negative, throw an IllegalArgumentException. Do not use loops or auxiliary data structures; solve the problem recursively. Also do not use the provided Java pow method in your solution. Type your Java solution code here This is a method problem. Write a Java method as described. Do not write a complete program or class; just the method(s) above. E4 Indent Sound F/X Highlighting Submit

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!