StrictMath.getExponent(float f) has the following syntax.
public static int getExponent(float f)
In the following code shows how to use StrictMath.getExponent(float f) method.
/*from w ww . j ava 2 s . c o m*/ public class Main { public static void main(String[] args) { float f1 = 25 , f2 = 1024; System.out.println("Exponent value of " + f1 + " = " + StrictMath.getExponent(f1)); System.out.println("Exponent value of " + f2 + " = " + StrictMath.getExponent(f2)); } }
The code above generates the following result.