fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception {
  4. System.out.println(Double.MIN_VALUE);
  5. System.out.println(Float.MIN_VALUE);
  6.  
  7. System.out.println(Double.MAX_VALUE * -1);
  8. System.out.println(Float.MAX_VALUE * -1);
  9. }
  10. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
4.9E-324
1.4E-45
-1.7976931348623157E308
-3.4028235E38