Skip to content

Instantly share code, notes, and snippets.

@jarmo
Created October 16, 2010 15:48
Show Gist options
  • Select an option

  • Save jarmo/629932 to your computer and use it in GitHub Desktop.

Select an option

Save jarmo/629932 to your computer and use it in GitHub Desktop.
public class Klass {
public static void Main() {
double a = 1.2;
double b = 1.0;
double c = 0.2;
System.Console.WriteLine(a - b == c);
System.Console.WriteLine(a * 10 - b * 10 == c * 10);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment