Skip to content

Instantly share code, notes, and snippets.

@sualeh
Last active April 7, 2022 22:01
Show Gist options
  • Select an option

  • Save sualeh/5bc2b3a77693e4c4876744c6e6d36199 to your computer and use it in GitHub Desktop.

Select an option

Save sualeh/5bc2b3a77693e4c4876744c6e6d36199 to your computer and use it in GitHub Desktop.
Java Rounding Demo
// See https://www.online-java.com/6uKwX2DOQ9
public class JavaRounding
{
public static void main(String []args)
{
System.out.println(0.9 - 0.1);
System.out.println(0.7 + 0.1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment