Online Java Compiler By
JavaTpoint.com
public class GetExponentExample2 { public static void main(String[] args) { float a = 83.2f; // Input float value, Output exponent of it System.out.println(Math.getExponent(a)); } }
Output