blob: 24c60c070fb68be6abdba0d0df8656c768a2fe2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class pr6520
{
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);
}
}
|