Java StrictMath.getExponent(float f)
Syntax
StrictMath.getExponent(float f) has the following syntax.
public static int getExponent(float f)
Example
In the following code shows how to use StrictMath.getExponent(float f) method.
// w w w .ja va2s. 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.