Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
double x = 1/3.0;
System.out.println("Original    : " + x);
x = x * 7e-45;
System.out.println("NormalizedDenormalized: " + x);
x = x / 7e-45;
System.out.println("Restored    : " + x);

...