โ Back to Methods
Question 146
Power Method
Power Method
Complete the static methodPowerso it returns base raised to exp using a loop (no Math.Pow). Assume exp >= 0; anything to the power 0 is 1. Use along. Do NOT write a Main method. For Power(2, 5) the program prints 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.