What I mean is the following:
double d1 =555;
double d2=55.343
I want to be able to tell that d1 is an integer while d2 is not. Is there an easy way to do it in c/c++?
|
What I mean is the following:
I want to be able to tell that d1 is an integer while d2 is not. Is there an easy way to do it in c/c++? |
|||||||||||||||||||
|
|
Use
Don't convert to Edit: As Pete Kirkham points out, passing 0 as the second argument is not guaranteed by the standard to work, requiring the use of a dummy variable and, unfortunately, making the code a lot less elegant. |
|||||||||||||||||||||
|
|
How about
Fixed up to work using rounding to reflect bug Anna found Alternate solutions:
Theres also another one with taking floor, subtracting 0.5 and taking abs() of that and comparing to 0.499999999 but I figure it won't be a major performance improvement. |
|||||||||||||||||||||
|
|
Assuming you have the cmath
|
||||
The cast probably isn't necessary, but makes it a bit clearer whats going on. |
|||
|
|
|
int iHaveNoFraction(double d) { return d == trunc(d); } Now, it wouldn't be C if it didn't have about 40 years of language revisions... In C, |
|||||||||||||
|
|
avakar was almost right - use modf, but the detail was off. modf returns the fractional part, so the test should be that the result of modf is 0.0. modf takes two arguments, the second of which should be a pointer of the same type as the first argument. Passing NULL or 0 causes a segmentation fault in the g++ runtime. The standard does not specify that passing 0 is safe; it might be that it happens to work on avakar's machine but don't do it. You could also use
|
|||||||
|
|
|||
|
|
|
Assuming a c99 and IEEE-754 compliant environment,
is another solution, and will (on most platforms) have slightly better performance than Note that |
|||
|
|
|
try:
|
|||
|
|
|
Below you have the code for testing d1 and d2 keeping it very simple. The only thing you have to test is whether the variable value is equal to the same value converted to an int type. If this is not the case then it is not an integer.
|
|||||
|
|
In many calculations you know that your floating point results will have a small numerical error that can result from a number of multiplications. So what you may really want to find is the question is this number within say 1e-5 of an integer value. In that case I think this works better:
|
|||
|
|
|
A sample code snipped that does it:
EDIT: Changed it to reflect correct code. |
||||