Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Float is 0 after integer division

It might be a simple solution but I can not fix it.

I am dividing 2 integers :

finishedGameFinalScore = [score integerValue];
CGFloat interval = 2/finishedGameFinalScore;
NSLog(@"interval = %f",interval);

The log returns 0.000000

Is there a limit for decimal places? I need to preserve the decimal result.

Thanks Shani

like image 844
shannoga Avatar asked Aug 15 '12 12:08

shannoga


People also ask

What happens when you divide an integer by a float?

If one of the operands in you division is a float and the other one is a whole number ( int , long , etc), your result's gonna be floating-point. This means, this will be a floating-point division: if you divide 5 by 2, you get 2.5 as expected.

What happens if you divide two integers a integer and float?

Dividing two integers will result in an integer (whole number) result. You need to cast one number as a float, or add a decimal to one of the numbers, like a/350.0.

Why does Python integer division return a float?

Behavior of the division operator in Python 2.7 and Python 3 // is not "used for integer output". // is the result of the floor() function to the result of the division, which in turns yields an integer if the two operands are integers and a float if at least one of them is a float, for types coherence.

Does division always result in a float?

// int DivisionThe / operator always produce a float. However many algorithms make the most sense if all of the values are kept as ints, so we need a different sort of division operator that produces ints.


2 Answers

The reason your code doesn't work is that you're dividing an integer by another integer and then casting the result to a float.

So you have 2 (an integer) and some other number (also an integer). Then you divide 2 by this number - which is probably greater than 2. Let's say it's 3.

Integer sees 2/3 and he's like "0.66666667? Pshh, no one ever needs anything after the decimal point anyway". So he truncates it. You just have 0.

Then Integer gives the number to Mr. float and Mr float is super happy to get a number! He's all like "yay, a 0! I'm going to add ALL OF THE SIGNIFICANT DIGITS". And that's how you end up with 0.0000000.

So yeah, just cast to a float first. Or even a double!

enter image description here

like image 105
Dustin Avatar answered Sep 18 '22 21:09

Dustin


@Dustin said u will need to typecast your divider value to float as it goes in float it shows integer value

CASE 1: Typecast

NSString *score = @"3";
 int interval = [str intValue];
 CGFloat interval = (2/(float)interval);
 NSLog(@"interval = %.2f",interval);

CASE 2: No need for typecast

NSString *score = @"3";
 float interval = [str floatValue];
 CGFloat interval = (2/interval);
 NSLog(@"interval = %.2f",interval);
like image 23
Paresh Navadiya Avatar answered Sep 19 '22 21:09

Paresh Navadiya