Created
October 24, 2014 15:41
-
-
Save joncham/d3bf68b5be05a20114e6 to your computer and use it in GitHub Desktop.
Floating Point Awesomeness
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
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