Duplicate of: round() for float in C++
I'm using VS2008 and I've included math.h but I still can't find a round function. Does it exist?
I'm seeing a bunch of "add 0.5 and cast to int" solutions on google. Is that the best practice?
Duplicate of: round() for float in C++I'm using VS2008 and I've included math.h but I still can't find a round function. Does it exist? I'm seeing a bunch of "add 0.5 and cast to int" solutions on google. Is that the best practice? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
That's right there is no To get the normal rounding behaviour, you would indeed use This way will give you problems with negative numbers, a workaround for that problem is by using ceil() for negative numbers:
Another, cleaner, but more resource-intensive, way is to make use of a stringstream and the input-/output-manipulators:
Only use the second approach if you are not low on resources and/or need to have control over the precision. |
|||||||||||||
|
|
Using
|
|||
|
|
I don't know if it's best practice or not but using the 0.5 technique with a floor() seems to be the way to go. |
|||
|
|
|
There actually isn't a round function in Microsoft math.h. |
|||
|
|