Online Java Compiler By
JavaTpoint.com
public class GetExponentExample6 { public static void main(String[] args) { double a = 0.0; // Input zero, Output (Double.MIN_EXPONENT-1) System.out.println(Math.getExponent(a)); } }
Output