โ Back to User Input
Question 353
Power of Two Integers
Power of Two Integers
Read a base and an exponent (both non-negative integers) from input and print the base raised to that exponent. Compute it with a loop by repeated multiplication (do not use pow). For example, if the input is:
2 5
print:
32
End the line with a newline.Expected Output:
32
Topics:
User Input
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.