Skip to content

Instantly share code, notes, and snippets.

@joncham
Created October 24, 2014 15:41
Show Gist options
  • Save joncham/d3bf68b5be05a20114e6 to your computer and use it in GitHub Desktop.
Save joncham/d3bf68b5be05a20114e6 to your computer and use it in GitHub Desktop.
Floating Point Awesomeness
Console.WriteLine (Math.Round (1.5));
Console.WriteLine (Math.Round (2.0));
Console.WriteLine (Math.Round (2.5));
Console.WriteLine();
Console.WriteLine (Math.Round (2.5));
Console.WriteLine (Math.Round (3.0));
Console.WriteLine (Math.Round (3.5));
// Output
// 2
// 2
// 2
// 2
// 3
// 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment