public class Foo
{
public static void main(String[] args) {
System.out.println(Math.min(Double.MIN_VALUE, 0.0d));
}
}
I am getting 0.0 answer why?
what is the reason behind this?`
In the another post it explains Double.MIN_VALUE is the least positive value
but here my result is 0.0 which is neither positive nor negative according to English language.