Pow(x, n)
This question is very easy. But the corner case must be considered in.
1. negative n.
2. n equals to 0.
Then we can using recursive method to solve this problem.
Here is the code:
Additional throughout: how about n is also double?
No comments:
Post a Comment