logo CodeStepByStep logo

Power

Language/Type: C# recursion

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 ArgumentException.

Do not use loops or auxiliary data structures; solve the problem recursively. Also do not use the provided C# pow method in your solution.

Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.