Why below program output is 0.0. It is to return the minimum value of Double.
public class Test {
public static void main(String[] args){
System.out.println(Math.min(Double.MIN_VALUE, 0.0d)); // 0.0
}
}
The min value is close to zero but why it is giving 0.0 instead of exact value?