Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two text boxes and user can input 2 positive integers (Using Objective-C). The goal is to return a random value between the two numbers.

I've used "man arc4random" and still can't quite wrap my head around it. I've came up with some code but it's buggy.

float lowerBound = lowerBoundNumber.text.floatValue;
float upperBound = upperBoundNumber.text.floatValue;
float rndValue;
//if lower bound is lowerbound < higherbound else switch the two around before randomizing.
if(lowerBound < upperBound)
{
    rndValue = (((float)arc4random()/0x100000000)*((upperBound-lowerBound)+lowerBound));
}
else 
{
    rndValue = (((float)arc4random()/0x100000000)*((lowerBound-upperBound)+upperBound));
}

Right now if I put in the values 0 and 3 it seems to work just fine. However if I use the numbers 10 and 15 I can still get values as low as 1.0000000 or 2.000000 for "rndValue".

Do I need to elaborate my algorithm or do I need to change the way I use arc4random?

share|improve this question
1  
Your parentheses are wrong. Delete the open parenthesis after * and the close parenthesis before ;. You still have rounding issues though. – David Schwartz Mar 13 '12 at 4:34
2  
The general formula minValue + ((maxValue - minValue) * rnd()) where rnd() returns a random floating-point value between 0.0 and 1.0 will return the value you're looking for. I leave it to you to convert that into Obj-C and optimize it to suit your needs. – Jim H. Mar 13 '12 at 4:34
@DavidSchwartz:Thanks! That actually did the trick! – Demasterpl Mar 13 '12 at 4:43

1 Answer

You could simply use integer values like this:

int lowerBound = ...
int upperBound = ...
int rndValue = lowerBound + arc4random() % (upperBound - lowerBound);

Or if you mean you want to include float number between lowerBound and upperBound? If so please refer to this question: http://stackoverflow.com/a/4579457/1265516

share|improve this answer
int is not float – Andrew Mar 13 '12 at 4:37
Sorry I misunderstand your question, please see the updated answer. – eveningsun Mar 13 '12 at 4:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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