CJCoding With Joseph

Recursive Power Method

Write the static method Power so it computes baseNum raised to the power exp using RECURSION (no loops). The base case is exp == 0, which returns 1; otherwise return baseNum * Power(baseNum, exp - 1). Assume exp is zero or positive. The tester calls it and prints the result. Do NOT write a Main method.

For Power(2, 5) the program prints exactly:
32

Expected Output:

32
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.