Random number function is misfiring - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:06:12Zhttp://stackoverflow.com/feeds/question/1068350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1068350/random-number-function-is-misfiring0Random number function is misfiringwillc22009-07-01T10:19:30Z2009-07-01T10:24:37Z
<p>I have a very simple iPhone app that requires a random integer from 1-100.</p>
<p>I have a button that calls the random number function then displays it.</p>
<pre><code>-(IBAction)buttonReleased;
{
srandom(time(NULL));
int theNum = random() % 100 + 1;
numberDisplay.text = [NSString stringWithFormat:@"%d", theNum];
}
</code></pre>
<p>The problem is, if I press the button quickly, sometimes it won't display a new random number.</p>
http://stackoverflow.com/questions/1068350/random-number-function-is-misfiring/1068362#10683627Answer by GMan for Random number function is misfiringGMan2009-07-01T10:21:47Z2009-07-01T10:21:47Z<p>The problem is you're seeding with <code>time</code>.</p>
<p><code>time</code> is only updated every second, so if you click it within the second, you will seed the generator with the same number, which means you'll be getting the same number.</p>
<p>You should only be seeding once, at the start of the application.</p>
http://stackoverflow.com/questions/1068350/random-number-function-is-misfiring/1068370#10683702Answer by user9876 for Random number function is misfiringuser98762009-07-01T10:24:37Z2009-07-01T10:24:37Z<pre><code>srandom(time(NULL));
</code></pre>
<p>Don't do that every time you generate a random number. Do it once, when your application starts.</p>
<p>Reason: Every time you call <code>srandom()</code> with a specific number, you'll get the same sequence of pseudo-random numbers from random(). So if you call your function twice in the same second, you'll get the same number.</p>