Here you can find the source of Pow(float base, float exponent)
public static float Pow(float base, float exponent)
//package com.java2s; //License from project: Open Source License public class Main { public static float Pow(float base, float exponent) { return (float) Math.pow(base, exponent); }//from w w w .j a v a 2 s . c om }