I want to generate 2 random numbers between 0 and 20
int one = rand() % 20;
it gives me 1 steady value i.e 1...
Am I missing something?
|
You have to give a seed to the random number.
Random number between 1 and 20
|
|||||||||||||||||
|
|
This would happen if However, as mentioned, you need to set a non-deterministic seed by calling |
|||||
|
|
To generate a random number in a specified range [min,max], do something like:
The method
may be faster, but it may not give you a normal distribution of values depending on the RNG. And as others have mentioned, if you want a different sequence for each run, execute |
|||
|
|
count? – SLaks Feb 2 '11 at 2:00rand()that you are calling instead of the C library version. – GregS Feb 3 '11 at 0:29