Skip to content

Instantly share code, notes, and snippets.

@vaskoz
Created June 4, 2015 05:05
Show Gist options
  • Save vaskoz/f08bfaabc941aaa88880 to your computer and use it in GitHub Desktop.
Save vaskoz/f08bfaabc941aaa88880 to your computer and use it in GitHub Desktop.
public class TooSmall {
public static void main(String[] args) {
double start = 0.1;
double tooSmall = 1.0e-18;
for (int i = 0; i < 1_000_000_000; i++) {
start += tooSmall;
}
System.out.println(start == 0.1); // TRUE
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment