CJCoding With Joseph

Recursive Power Method

Write a recursive method power(int base, int exp) that returns base raised to exp (assume exp is 0 or greater). When exp is 0 the result is 1; otherwise it is base * power(base, exp - 1). Call it with 3 and 4 and print the result:

81

Use System.out.println.

Expected Output:

81
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.