...
| Code Block |
|---|
class Test{
public static void main(String[] args){
int big = 1999999999;
double big_float = big;
float one = 1.0f;
System.out.println( (big * one) == big_float);
}
}
|
...
...
| Code Block |
|---|
class Test{
public static void main(String[] args){
int big = 1999999999;
double big_float = big;
float one = 1.0f;
System.out.println( (big * one) == big_float);
}
}
|
...