โ Back to Methods
Question 374
Recursive Power Method
Recursive Power Method
Write a recursive methodpower(int base, int exp)that returnsbaseraised toexp(assumeexpis 0 or greater). Whenexpis 0 the result is 1; otherwise it isbase * power(base, exp - 1). Call it with3and4and print the result: 81 UseSystem.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.