CJCoding With Joseph

Function: Power

Complete the function power so it returns base raised to exp using a loop (do not use pow()). The main function reads base and exp and prints the result.

Example: input '2 5' prints 32.

Expected Output:

32
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
2 5\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.