Last active
April 7, 2022 22:01
-
-
Save sualeh/5bc2b3a77693e4c4876744c6e6d36199 to your computer and use it in GitHub Desktop.
Java Rounding Demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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