vote up 0 vote down star

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?

#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;
    }
}
flag

2  
What happens if you seed just once? I.e. move the srand to before the loop in the main function? – dreamlax Jun 11 at 5:05
2  
6?? No, no, random numbers should be 4 - xkcd.com/221 – AviD Jun 11 at 5:08

3 Answers

vote up 3 vote down check

Add srand before the loop

 srand((unsigned)time(0));
  for(int i =0;i < 100;i++)
    {
    	std::cout << random_number(3,10) << endl;
    }
link|flag
vote up 2 vote down

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.

Move srand out of the loop, call it only once.

link|flag
vote up 3 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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