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