Tagged Questions
13
votes
5answers
2k views
Why does Math.Floor(Double) return a value of type Double?
I need to get the left hand side integer value from a decimal or double. For Ex: I need to get the value 4 from 4.6. I tried using Math.Floor function but it's returning a double value, for ex: It's ...
2
votes
3answers
89 views
Is there a way to floor/ceil based on whether the value is over 0.5 or under?
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?