PR6520.java 225 Bytes
Newer Older
1
public class PR6520
2 3 4 5 6 7 8 9 10 11 12 13
{
   public static void check (double x, double y)
   {
     System.out.println (x == y);
   }
 
   public static void main(String[] args)
   {
     check (Math.min (2.0f, Float.NaN), Float.NaN);
   }
 }