Exponent Calculator

Enter values
Last update: 2024-06-18
5/1
Result:
1000
Simple solution
1.
10^3
10 × 10 × 10
= 1000
Recursive algorithm for fast exposure to power
Solution steps
1.
n = 3. Если n нечетное
10 × pow(10 × 10, (3 - 1) ÷ 2)
pow(100, 1)
1.
n = 1. Если n нечетное
100 × pow(100 × 100, (1 - 1) ÷ 2)
pow(10000, 0)
1.
n = 0. Если n = 0
= 1
= 100
= 10 × 100 = 1000
Iterations: 3
Rating: 5
Votes: 1