I was curious to know how I can round a number to the nearest tenth whole number. For instance, if I had:
int a = 59 / 4;
which would be 14.75 calculated in floating point; how can I store the number as 15 in "a"?
|
This only works when assigning to an int as it discards anything after the '.' |
|||||||||||||||||
|
|
The standard idiom for integer rounding up is:
You add the divisor minus one to the dividend. |
|||||||||||||||
|
|
The above answer is technically correct but will overflow prematurely. You should instead use something like this:
I assume that you are really trying to do something more general:
x + (y-1) has the potential to overflow giving the incorrect result; whereas, x - 1 will only underflow if x = min_int... |
|||||||||
|
|
As written, you're performing integer arithmetic, which automatically just truncates any decimal results. To perform floating point arithmetic, either change the constants to be floating point values:
Or cast them to a
Either way, you need to do the final rounding with the |
|||
|
|
Another useful MACROS (MUST HAVE):
|
|||
|
|
eg 59/4 Quotient = 14, tempY = 2, remainder = 3, remainder >= tempY hence quotient = 15; |
|||||||
|