Created
April 30, 2012 02:31
-
-
Save droyad/2555007 to your computer and use it in GitHub Desktop.
This file contains 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
double n = 0; | |
for(int x = 0; x < 20; x++) | |
{ | |
n+= 0.3; | |
} | |
n.Dump(); | |
(n == 6.0).Dump(); | |
((0.3 * 20) == 6.0).Dump(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment