Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an NSUInteger and i want to divide it by 100. So lets say i have the number 1 in an NSUInteger i want to divide it by 100 and get 0.01 as the result.

(float) percent / 100

percent is an NSUInteger

share|improve this question
2  
So what is the problem? – Max Aug 15 '12 at 21:52
I agree with Max, the example provided appears syntactically correct although the result is ununsed. – Joe Aug 15 '12 at 21:53

closed as not a real question by Max, Noah Witherspoon, Paul.s, ikinci viking, bažmegakapa Aug 16 '12 at 0:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 2 down vote accepted

When dividing two integers, the result will be an integer. Make one of them a float (the constant is typical)

float percent = grade / 100.0f;
share|improve this answer
Surely that's a double? NSLog(@"%zd %zd", sizeof(100.0), sizeof(100.0f)); //=> 8 4 – Paul.s Aug 15 '12 at 21:52
Peace. I forgot the f. – Jody Hagins Aug 15 '12 at 22:10
Hi thank you this worked perfectly – Cristian Aug 15 '12 at 22:38

Your example looks fine since you are casting percent as a float. The rule of thumb to remember is to get a floating point value you have to divide by a floating point number. This means either both numbers are a floating point number or one of the numbers are floating point. Either of the following scenarios would solve your problem.

//I recommend the first option
float percentage = percent / 100.0f;
float percentage = (float)percent / 100.0f;
float percentage = (float)percent / 100;
share|improve this answer

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