float to integer

M

mhk

hi ,

Can anyone tell me how to convert float into integer.
example : if float value is 234.33 then i need 234

i just want to drop the decimal part.

Thanks in advance.

Jeff
 
F

Fredrik Lindner

mhk said:
hi ,

Can anyone tell me how to convert float into integer.
example : if float value is 234.33 then i need 234

That's is actually what happends when you convert a float (or double) to an
int.
i just want to drop the decimal part.

Do like this,

float f = 234.33;
int i = (int) f; // i has value 234.
Thanks in advance.

you're welcome
/Fredrik
 
A

ak

Fredrik Lindner said:
That's is actually what happends when you convert a float (or double) to an

Do like this,

float f = 234.33;
int i = (int) f; // i has value 234.

this is right if you want to drop.
Right conversion is made with Math.rint() or Math.round().
or you can do it by hand:

float f = 234.33;
int i = (int)(f + 0.5f);
//i has value 234

float f = 234.57;
int i = (int)(f + 0.5f);
//i has value 235;
 
F

Fredrik Lindner

this is right if you want to drop.
Right conversion is made with Math.rint() or Math.round().

Yes I agree. However, the original poster specifically asked for a decimal
drop. He/she (it?) also wanted the value converted to an int, in the case of
Math.rint() the returned value is a double so you'd need a conversion
anyway.

/Fredrik
 
A

ak

some ppl don't know really what they want ;-)

Fredrik Lindner said:
Yes I agree. However, the original poster specifically asked for a decimal
drop. He/she (it?) also wanted the value converted to an int, in the case of
Math.rint() the returned value is a double so you'd need a conversion
anyway.

/Fredrik
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,539
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top