What's wrong with my random number generator? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T21:32:23Z http://stackoverflow.com/feeds/question/979397 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator 0 What's wrong with my random number generator? Sam152 2009-06-11T05:02:39Z 2009-06-11T05:11:44Z <p>I'm just diving into some C++ and I decided to make a random number generator (how random the number is, it really doesn't matter). Most of the code is copied off then net but my newbie eyes cannot see anything wrong with this, is there any way this can be tweaked to give a number other than "6" each time?</p> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; #include &lt;cstdlib&gt; using namespace std; int random_number(int min, int max) { srand((unsigned)time(0)); int random_num; int range=(max-min)+1; random_num = min+int(range*rand()/(RAND_MAX + 1.0)); return random_num; } int main() { for(int i =0;i &lt; 100;i++) { cout &lt;&lt; random_number(3,10) &lt;&lt; endl; } } </code></pre> http://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator/979408#979408 3 Answer by Fred Larson for What's wrong with my random number generator? Fred Larson 2009-06-11T05:07:57Z 2009-06-11T05:07:57Z <p>Don't call srand() within random_number(). This will re-seed the random number generator every call. For 100 calls, you'll very likely get the same seed every call, and therefore the same number.</p> http://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator/979410#979410 3 Answer by aJ for What's wrong with my random number generator? aJ 2009-06-11T05:08:16Z 2009-06-11T05:08:16Z <p>Add srand before the loop</p> <pre><code> srand((unsigned)time(0)); for(int i =0;i &lt; 100;i++) { std::cout &lt;&lt; random_number(3,10) &lt;&lt; endl; } </code></pre> http://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator/979417#979417 2 Answer by Milan Babuškov for What's wrong with my random number generator? Milan Babuškov 2009-06-11T05:11:44Z 2009-06-11T05:11:44Z <p>The problem is that you use srand everytime. CPU is so fast that it will execute all this code in a single second, so you get the same seed each time.</p> <p>Move srand out of the loop, call it only once.</p>