How can I round a float (such as 37.777779) to two decimal places (37.78) in C?
|
|
|
||
|
|
|
If you want to write to C-string:
|
||||||||||
|
|
|
Assuming you're talking about round the value for printing, then Andrew Coleson and AraK's answer are correct:
But note that if you're aiming to round the number to exactly 37.78 for internal use (eg to compare against another value), then this isn't possible, due to the way floating point numbers work. See the link in Greg Hewgill's answer to a related question, which also covers why you shouldn't use floating point for financial calculations. |
|||
|
|
|
If you just want to round the number for output purposes, then the
Notice that are three different rounding rules you might want to choose: round down (ie, truncate after two decimal places), rounded to nearest, and round up. Usually, you want round to nearest. In this case, the three values are 37.77, 37.78, and 37.78, respectively. As several others have pointed out, due to the quirks of floating point representation, these rounded values may not be exactly the "obvious" decimal values, but they will be very very close. |
||
|
|
|
|
There isn't a way to round a However, you can "round" a |
||||
|
|
|
How about this:
|
||||
|
|
|
You can still use:
example:
|
||||||
|

float(anddouble) aren't decimal floating-point - they are binary floating-point - so rounding to decimal positions is meaningless. You can round the output, however. – Pavel Minaev Aug 27 at 21:49