Tagged Questions
9
votes
9answers
8k views
Recommended way to initialize srand?
I need a 'good' way to initialize the pseudo-random number generator in C++. I've found an article that states:
In order to generate random-like
numbers, srand is usually initialized
to some ...
7
votes
6answers
227 views
Whats the difference between srand(1) and srand(0)
I just found out the hard way that srand(1) resets the PRNG of C(++) to the state before any call to srand (as defined in the reference).
However, the seed 0 seems to do the same, or the state before ...
6
votes
5answers
2k views
rand() generating the same number – even with srand(time(NULL)) in my main!
So, I'm trying to create a random vector (think geometry, not an expandable array), and every time I call my random vector function I get the same x value, though y and z are different.
int main () {
...
5
votes
4answers
115 views
How often should I call srand() in a C++ application?
I have a C++ application which calls rand() in various places. Do I need to initialize srand() regularly to ensure that rand() is reasonably random, or is it enough to call it once when the app ...
4
votes
4answers
751 views
Find out what a random number generator was seeded with in C++
I've got an unmanaged c++ console application in which I'm using srand() and rand(). I don't need this to solve a particular problem, but was curious: is the original seed passed to srand() stored ...
4
votes
5answers
767 views
Issues with seeding a pseudo-random number generator more than once?
I've seen quite a few recommendations for not seeding pseudo-random number generators more than once per execution, but never accompanied by a thorough explanation. Of course, it is easy to see why ...
3
votes
4answers
165 views
srand seed consistency between physical machines
I'm not quite sure how to phrase this question, but I couldn't find any others like it.
Say I have this code:
srand(1);
srand(SOME_DEFINED_CONST_INT);
If I run this executable on a number of ...
2
votes
3answers
199 views
generating random numbers - srand c++
I am having trouble using srand.
i am trying to generate a random number in the interval 100 to 200.
The number will keep being generated and placed in an array. Once the method is called again the ...
2
votes
4answers
192 views
How to eliminate all sources of randomness so that program always gives identical answers?
I have C++ code that relies heavily on sampling (using rand()), but I want it to be reproducible. So in the beginning, I initialize srand() with a random seed and print that seed out. I want others to ...
1
vote
3answers
136 views
Cross-OS distributed computing in C++, rand() issue
I'm working on a small distributed computing project. The server can't handle the calculations without crashing Apache in the process, so I'm giving these calculations to the users.
The basic idea is ...
1
vote
5answers
1k views
C++ random number from a set
Is it possible to print a random number in C++ from a set of numbers with ONE SINGLE statement?
Let's say the set is {2, 5, 22, 55, 332}
I looked up rand() but I doubt it's possible to do in a ...
0
votes
2answers
68 views
rand from -30 to 30
Hello I want print numbers from 30 to -30, this is my code
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main(){
srand(time(0));
int ...
0
votes
3answers
71 views
What am I doing wrong with srand to build a non repeating random array in C++?
I am trying to build a random array of length (size1). The way that I've researched doing this is to have two separate arrays, one for my random numbers and a secondary "checking" array to make sure ...
0
votes
6answers
171 views
srand not random at all - alternatives?
I was toying around with arrays, populating with pseudo random numbers, finding minimum and maximum values and their indices and number of occurrences and I noticed something strange - when using ...
0
votes
2answers
99 views
Bingo Board: Generating unique values
I'm having trouble generating unique values which do NOT repeat for this bingo board. My code is relatively simple: I use a nested for loop to generate the values with some print statements; upon each ...
0
votes
5answers
154 views
RNG crashing c++ program
I am currently coding a roguelike, and naturally am using a lot of random number generation.
The problem I'm running up on is that if I "overheat" rand(); my program will crash.
If i'm only ...
0
votes
3answers
313 views
C++ random int function
Hello dear members of stackoverflow I've recently started learning C++, today I wrote a little game but my random function doesn't work properly. When I call my random function more than once it ...
0
votes
5answers
375 views
Problems with srand(), C++
I'm trying to write a program that generates a pseudorandom numbers using a seed. However, I'm running into problems.
I get this error
39 C:\Dev-Cpp\srand_prg.cpp void value not ignored as it ought ...
0
votes
3answers
325 views
rand () for c++ with variables
int userHP = 100;
int enemyHP = rand() % ((userHP - 50) - (userHP - 75)) + 1;
okay, for some reason this doesnt seem to work right, im trying to get 50 -25 hp for enemys.
also id rather it be a ...
0
votes
1answer
673 views
Correct use of s/rand or Boost::random
I know this kind of question has been asked a few times, but alot of them answers boil down to RTFM, but I'm hoping if I can ask the right question... I can get a quasi-definitive answer for everyone ...
0
votes
4answers
2k views
Will repeated calls to srand() in c++ use the same seed?
If I have srand(2) declared in my main of my driver file,
do I need to declare srand(2) in my code file which is being linked with my driver?
Thanks.
edit
(from user's comment below)
If I do,
...
-5
votes
4answers
115 views
How can I generate a random number between 5 and 25 in c++ [closed]
Possible Duplicate:
Generate Random numbers uniformly over entire range
C++ random float
How can I generate a random number between 5 and 25 in c++ ?
#include <iostream>
#include ...