[LeetCode] Problem 50 - Pow(x, n)
Implement pow(x, n), which calculates x raised to the power n (x^n).
ExampleNo.1Input: 2.00000, 10
Output: 1024.00000
No.2Input: 2.10000, 3
Output: 9.
...