CJCoding With Joseph
15per day

Power Method

Complete the static method Power so it returns base raised to exp using a loop (no Math.Pow). Assume exp >= 0; anything to the power 0 is 1. Use a long. 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.