I have a very big number (up to 15 digits) which is stored as a double
I need to know if this number is integer or not
but % function doesn't exist for double
I wanted to do chaeck myDoubleNum%1 is not equal to 0
Given that doubles cannot represent all values with absolute precision you might find that you assign (or enter) an integer (say 15.0) but that the double represents it as 14.999999999999.
There is a possible solution, but it has a serious caveat.
The solution is to use the function modf
modf
Splits a floating-point value into fractional and integer parts.
double modf( double x, double *intptr );
Return Value
This function returns the signed fractional portion of x. There is no error return.
The problem with this is that the fractional part may not be exactly zero, if you have worked with the number a bit. This is a standard problem when handling floating point numbers and the usual solution is to treat everything smaller than a given epsilon as zero.
So the code could look like this:
Code:
#include <math.h>
const double epsilon = 0.00001; // you should adjust this as needed
bool IsInteger(double d)
{
double intpart;
return fabs(modf(d, &intpart)) < epsilon;
}
Get this small utility to do basic syntax highlighting in vBulletin forums (like Codeguru) easily.
Supports C++ and VB out of the box, but can be configured for other languages.
Why don't you just use an integer in the first place ? Many compilers include 64 bit integers which would be enough to handle 15 decimal digits. On MS VC, the datatype in question is called __int64.
Get this small utility to do basic syntax highlighting in vBulletin forums (like Codeguru) easily.
Supports C++ and VB out of the box, but can be configured for other languages.
well I can't use int because the number may not be an Integer and then I need to treat it differently, but you gave ma another idea, check the difference between the double value to the __int64 value, meaning:
There may be problems with both approaches. The first one will not work correctly if the string doesn't contain exactly 14 digits. What if the string is only "12" ? The second approach suffers from the same rounding problems that Dave and myself have pointed out above.
If you really need doubles then just use my IsInteger function.
Get this small utility to do basic syntax highlighting in vBulletin forums (like Codeguru) easily.
Supports C++ and VB out of the box, but can be configured for other languages.
double d = 5.1;
if( double(int(d)) == d ) // is a integer
Same representation problem. Floating point numbers may not exactly correspond with what you assign them. You cant safely do an == with a double, its not a precise representation.
Since you already captured the int/double value in the form of string, why not scan for the decimal point or '.'. If there exists non-zero value character(s) after the decimal point, the string presentation must be a double.
I have a very big number (up to 15 digits) which is stored as a double
I need to know if this number is integer or not
but % function doesn't exist for double
I wanted to do chaeck myDoubleNum%1 is not equal to 0
any suggestions?
thanks
May I ask why it has to be 15 digits ?
Thanks a lot...
Regards,
-Nina
Last edited by hometown; October 13th, 2003 at 09:47 PM.
Originally posted by hometown
May I ask why it has to be 15 digits ?
Thanks a lot...
Regards,
-Nina
different program have differ specifications and requirements..In what he is doin he needs to manipulate a 15 didgit number...
or he simply wants to learn how to manipulate in case of a 15 digit no...
<edit>BTW : he said UPTO 15..</edit>
Last edited by Joseph_R_Thomas; October 13th, 2003 at 10:36 PM.
R. Thomas
"Be anxious for nothing, but in everything by prayer and supplication, with thanksgiving, let your requests be made know to God; and the peace of God, which surpasses all understanding, will guard your hearts and minds through Christ Jesus."Philippians 4:6-7
"Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18
If my memory serves me right, this doesn't work for negative numbers.
Get this small utility to do basic syntax highlighting in vBulletin forums (like Codeguru) easily.
Supports C++ and VB out of the box, but can be configured for other languages.
Bookmarks