Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

Min and Max values of data type double

public class Main {          public static void main(String[] args) {         System.out.println(Double.MIN_VALUE);         System.out.println(Double.MAX_VALUE);     } } /* 4.9E-324 1.7976931348623157E308 */