Random number function is misfiring - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:06:12Z http://stackoverflow.com/feeds/question/1068350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1068350/random-number-function-is-misfiring 0 Random number function is misfiring willc2 2009-07-01T10:19:30Z 2009-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#1068362 7 Answer by GMan for Random number function is misfiring GMan 2009-07-01T10:21:47Z 2009-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#1068370 2 Answer by user9876 for Random number function is misfiring user9876 2009-07-01T10:24:37Z 2009-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>