up vote 4 down vote favorite
2
share [g+] share [fb]

How can we extract the decimal part of a floating point number and to store the decimal part and the integer part into seperate two integer variables?

link|improve this question

0% accept rate
How/why do you want to represent the fractional part in an integer? – Jonathan Leffler Feb 1 '09 at 2:57
3  
How would you distinguish the decimal fractions in 1.5 and 1.005? – TokenMacGuy Jun 5 '09 at 12:16
2 years, 11 months. 22 questions. 0 accepts. Seriously? – Lightness Races in Orbit 2 days ago
feedback

12 Answers

You use the modf function:

double integral;
double fractional = modf(some_double, &integral);

You can also cast it to an integer, but be warned you may overflow the integer. The result is not predictable then.

link|improve this answer
feedback

Try this:

int main() {
  double num = 23.345;
  int intpart = (int)num;
  double decpart = num - intpart;
  printf("Num = %f, intpart = %d, decpart = %f\n", num, intpart, decpart);
}

For me, it produces:

Num = 23.345000, intpart = 23, decpart = 0.345000

Which appears to be what you're asking for.

link|improve this answer
the first part is correct but wish to get the result as decimal part as 345000 integer – Binu Feb 1 '09 at 1:03
but i want to get the deciaml part as Integer value which means decpart=345000 – Binu Mar 14 '09 at 16:11
1  
int decpart = 100000*(num - intpart); – TokenMacGuy Jun 5 '09 at 12:14
feedback

The quick "in a nut shell" most obvious answer seems like:

#define N_DECIMAL_POINTS_PRECISION (1000) // n = 3. Three decimal points.

float f = 123.456;
int integerPart = (int)f;
int decimalPart = ((int)(f*N_DECIMAL_POINTS_PRECISION)%N_DECIMAL_POINTS_PRECISION);

You would change how many decimal points you want by changing the N_DECIMAL_POINTS_PRECISION to suit your needs.

link|improve this answer
Just for fun. Let's do a thought experiement: The more obfuscated and complex ( see "hard to maintain code" ) solution could go as far as [bit slicing][1] the float or double to get the actual ["integerBits" and "fractionalBits"][2]. – Trevor Boyd Smith Mar 26 '09 at 3:53
I'm not exactly sure of why you would do this... maybe this method would have the advantage of capturing the integer and decimal parts directly without losing any of the precision due to floating point rounding. – Trevor Boyd Smith Mar 26 '09 at 3:54
Here is some incomplete pseudo code to give you the idea: #define BIT_MASK1 /* not sure / #define SHIFT / not sure / #define BIT_MASK2 / not sure */ float f = 123.456; uint32_t * tmp = (uint32_t *)&f; int integerPart = (int)f; – Trevor Boyd Smith Mar 26 '09 at 3:55
int decimalPart = (((*tmp)&BIT_MASK1)>>SHIFT)&BIT_MASK2; [1]: en.wikipedia.org/wiki/Bit_mask [2]: en.wikipedia.org/wiki/Q_(number_format) – Trevor Boyd Smith Mar 26 '09 at 3:56
feedback

I don't see how you could put the decimal part into an integer unless you knew how many digits you wanted to keep. Could you give a few examples?

link|improve this answer
i want to get the decimal part as integer for any inputting value. so the number of digits in the deciaml part cannot predict. – Binu Feb 1 '09 at 1:25
like if u input 16.25 i want to get 25 in an integer value also if teh nuber is 0.3215769 i want to get 3215769 in an integer like that – Binu Feb 1 '09 at 1:33
reading into a string, then checking to see whether the string is a double (questions exist on SO that are answered saying how to do that), and then getting the stuff after the ".". what about that? or do you need to read other formats too (10e-5)? – Johannes Schaub - litb Feb 1 '09 at 1:49
is thre any othe r method for doing this other than using string manipulation.?? – Binu Feb 1 '09 at 1:51
1  
What if you have a bunch of zeros after the decimal point? They can't be represented unless they are in a string--an int wouldn't work for that. – Nosredna Feb 1 '09 at 5:06
show 1 more comment
feedback

Other answers have given you how to split the whole part from the fractional part. To do what you want with the fractional part, just keep multiplying it by 10 until the fractional part of that becomes 0.

You may have to deal with overflow converting that to an integer (if you're working with doubles instead of floats).

Also, I'm not sure how rounding error might screw with this - been a long time since I did numerical analysis. And even then it was pretty much the minimum to get a good grade in some class.

I'll leave those problems and the actual implementation as an exercise for the reader. Is this homework by any chance?

link|improve this answer
feedback

Well, floor() or casting will get you the integer part easily, but what do you actually expect to store in the "decimal" part?

Not even including issues like floating point (im)precision, what do you want to happen when your candidate float is a repeating fraction or an irrational number?

link|improve this answer
feedback

dim n as double' original number dim i as integer' integer portion dim d as double ' decimal portion

i = int(n) d = n - i

' if n = 34.45 ' i = int(n) = 34 ' d = n - i = 34.45 - 34 = .45

link|improve this answer
feedback

dim n as double

dim i as integer

dim d as double

i = int(n)

d = n - i

if n=34.45

then i=int(n)=34

and d=n-i= 34.45 - 34 = .45

link|improve this answer
feedback

Interesting, but what about this? casting does not work properly, modf() also does not work in this situation (I just want to take integral part only!)

int main()
{
 double d;
 int i;
 int x;

 d = 10.000;

 for (i=1; i< 20; i++)
 {
  x=(int) (d*100.00);
  printf("%lf --> %lf --> %d\n", d, d*100.00, x);

  d = d+0.001;
 }

 return 0;
}

Here was the output, please read carefully at the line: 10.010000 --> 1001.000000 --> 1000

khanhnd@debian96:~/test$ gcc -Wall -O3 rounding.c
khanhnd@debian96:~/test$ ./a.out
10.000000 --> 1000.000000 --> 1000
10.001000 --> 1000.100000 --> 1000
10.002000 --> 1000.200000 --> 1000
10.003000 --> 1000.300000 --> 1000
10.004000 --> 1000.400000 --> 1000
10.005000 --> 1000.500000 --> 1000
10.006000 --> 1000.600000 --> 1000
10.007000 --> 1000.700000 --> 1000
10.008000 --> 1000.800000 --> 1000
10.009000 --> 1000.900000 --> 1000
10.010000 --> 1001.000000 --> 1000
10.011000 --> 1001.100000 --> 1001
10.012000 --> 1001.200000 --> 1001
10.013000 --> 1001.300000 --> 1001
10.014000 --> 1001.400000 --> 1001
10.015000 --> 1001.500000 --> 1001
10.016000 --> 1001.600000 --> 1001
10.017000 --> 1001.700000 --> 1001
10.018000 --> 1001.800000 --> 1001
link|improve this answer
feedback

I created a subroutine one using a double float, it returns 2 integer values.


void double2Ints(double f, int p, int *i, int *d)
{ 
  // f = float, p=decimal precision, i=integer, d=decimal
  int   li; 
  int   prec=1;

  for(int x=p;x>0;x--) 
  {
    prec*=10;
  };  // same as power(10,p)

  li = (int) f;              // get integer part
  *d = (int) ((f-li)*prec);  // get decimal part
  *i = li;
}

void test()
{ 
  double df = 3.14159265;
  int   i,d;
  for(int p=2;p<9;p++)
  {
    double2Ints(df, p, &i,&d); printf("d2i (%d) %f = %d.%d\r\n",p, df,i,d);
  }
}

link|improve this answer
feedback

Maybe the best idea is to solve the problem while the data is in String format. If you have the data as String, you may parse it according to the decimal point. You extract the integral and decimal part as Substrings and then convert these substrings to actual integers.

link|improve this answer
feedback

try this:

double dCalc = 10.032808399;
    double integralPart = Math.Truncate(dCalc);
    double decimalPart = Math.Ceiling((dCalc - integralPart)*100);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.