What's wrong with my random number generator? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T21:32:23Zhttp://stackoverflow.com/feeds/question/979397http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator0What's wrong with my random number generator?Sam1522009-06-11T05:02:39Z2009-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 <iostream>
#include <string>
#include <cstdlib>
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 < 100;i++)
{
cout << random_number(3,10) << endl;
}
}
</code></pre>
http://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator/979408#9794083Answer by Fred Larson for What's wrong with my random number generator?Fred Larson2009-06-11T05:07:57Z2009-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#9794103Answer by aJ for What's wrong with my random number generator?aJ2009-06-11T05:08:16Z2009-06-11T05:08:16Z<p>Add srand before the loop</p>
<pre><code> srand((unsigned)time(0));
for(int i =0;i < 100;i++)
{
std::cout << random_number(3,10) << endl;
}
</code></pre>
http://stackoverflow.com/questions/979397/whats-wrong-with-my-random-number-generator/979417#9794172Answer by Milan Babuškov for What's wrong with my random number generator?Milan Babuškov2009-06-11T05:11:44Z2009-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>