fork download
  1. import java.lang.*;
  2.  
  3. class Ideone {
  4. public static void main (String[] args) throws Exception {
  5. double a = 3.0e83;
  6. double b = -a;
  7. double c = 2.0e-80;
  8. double x1 = (a+b) +c;
  9. double x2 = a+(b +c);
  10. System.out.println(x1);
  11. System.out.println(x2);
  12. System.out.println(x1==x2);
  13. }
  14. }
Success #stdin #stdout 0.1s 320320KB
stdin
Standard input is empty
stdout
2.0E-80
0.0
false