I am trying to round my values so that if it's 0.5 or greater, it becomes 1, else it becomes 0. For example:
3.7 -> 4;
1.3 -> 1;
2.5 -> 3;
...
Any ideas?
feedback
|
http://msdn.microsoft.com/en-us/library/system.midpointrounding.aspx In the above, I made use of | |||||
feedback
|
|
I arrived last, so I'll tell something different. You round Launch this piece of code and have fun (note that there is/was a "bug" in mono on numbers like 0.49999999999999994, so to run it on ideone I had to modify it a little to try to round 1.5: https://ideone.com/S5S0k)
| ||||
|
feedback
|