How can I round a float (such as 37.777779) to two decimal places (37.78) in C?
|
If you just want to round the number for output purposes, then the
Notice that there 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. 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. For much (much!) more information on rounding, and especially on tie-breaking rules for rounding to nearest, see the Wikipedia article on Rounding. |
||||
|
|
|
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 a good idea, due to the way floating point numbers work: you usually don't want to do equality comparisons for floating point, instead use a target value +/- a sigma value. Or encode the number as a string with a known precision, and compare that. 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 want to write to C-string:
|
|||||||||||||
|
|
How about this:
|
|||||||
|
|
There isn't a way to round a However, you can "round" a |
|||||
|
|
You can still use:
example:
|
|||||||
|
|
In C++ (or in C with C-style casts), you could create the function:
Then Obviously you don't really need to create all 5 variables in that function, but I leave them there so you can see the logic. There are probably simpler solutions, but this works well for me--especially since it allows me to adjust the number of digits after the decimal place as I need. |
|||
|
|
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 '09 at 21:49