Implement pow(x, n). 题意:求x的n次幂 水题直接上代码了: java代码: public double myPow(double x, int n) { return Math.pow(x, n); }