โ Back to Methods
Question 374
Recursive Power Method
Recursive Power Method
Write the static methodPowerso it computesbaseNumraised to the powerexpusing RECURSION (no loops). The base case isexp == 0, which returns1; otherwise returnbaseNum * Power(baseNum, exp - 1). Assumeexpis zero or positive. The tester calls it and prints the result. Do NOT write aMainmethod. ForPower(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.