vote up 0 vote down star

I used the following line to convert float to int, but not as accurate as I'd like :

 float a=8.61f;
 int b;

  b=(int)a;

The result is : 8 [ It should be 9 ]

When a=-7.65f, the result is :  -7 [ It should be -8 ]

What's the best way to do it ?

flag

60% accept rate

1 Answer

vote up 11 vote down check

Use Math.round() before typecasting using (int) should round the float to the nearest whole number.

link|flag
Yeah. I redid my work in my head. You are correct. – Thomas Owens Aug 18 at 17:45

Your Answer

Get an OpenID
or

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