Exercise p8.11 on page 382
Consider the following algorithm for computing xn
for an integer n.
If n<0, xn is 1/x-n.
If n is positive and even, then xn = (xn/2)2.
If n is positive and odd, then xn = xn-1 * x.
Implement a static method
double intPower(double x, int n)
that uses this algorithm.
Add it to a class called Numeric.