Hi i want to round double numbers like this (away from zero) in C++:
4.2 ----> 5
5.7 ----> 6
-7.8 ----> -8
-34.2 ----> -35
What is the efficient way to do this?
|
|
|||||||
|
|
|
As mentioned in the article Huppie cites, this is best expressed as a template that works across all float types See http://www.cplusplus.com/reference/clibrary/cmath/floor/ and http://www.cplusplus.com/reference/clibrary/cmath/ceil/ or, thanks to Pax, a non-function version:
|
||||||
|
|
|
There is a nice article about a similar problem on CPlusPlus.com. The easy solution to your problem should be something like this:
A better solution is the one mentioned in the article, which uses a template:
|
||||||||||
|
|
|
try
|
||||||||||||
|