static double pow(double a, double b) { ret Math.pow(a, b); } static float pow(float a, float b) { ret (float) Math.pow(a, b); }