![]() |
| ||
| C++ Random Numbers Intro This tutorial provides a brief introduction to the random number functions that come as part of the C++ standard library, namely rand() and srand(). rand() and RAND_MAX The C++ standard library includes a pseudo random number generator for generating random numbers. In order to use it we need to include the <cstdlib> header. To generate a random number we use the rand() function. This will produce a result in the range 0 to RAND_MAX, where RAND_MAX is a constant defined by the implementation. Here's a piece of code that will generate a single random number: #include <cstdlib>The value of RAND_MAX varies between compilers and can be as low as 32767, which would give a range from 0 to 32767 for rand(). To find out the value of RAND_MAX for your compiler run the following small piece of code: #include <cstdlib>srand() The pseudo random number generator produces a sequence of numbers that gives the appearance of being random, when in fact the sequence will eventually repeat and is predictable. We can seed the generator with the srand() function. This will start the generator from a point in the sequence that is dependent on the value we pass as an argument. If we seed the generator once with a variable value, for instance the system time, before our first call of rand() we can generate numbers that are random enough for simple use (though not for serious statistical purposes). In our earlier example the program would have generated the same number each time we ran it because the generator would have been seeded with the same default value each time. The following code will seed the generator with the system time then output a single random number, which should be different each time we run the program. #include <cstdlib>Don't make the mistake of calling srand() every time you generate a random number; we only usually need to call srand() once, prior to the first call to rand(). Generating a number in a specific range If we want to produce numbers in a specific range, rather than between 0 and RAND_MAX, we can use the modulo operator. It's not the best way to generate a range but it's the simplest. If we use rand()%n we generate a number from 0 to n-1. By adding an offset to the result we can produce a range that is not zero based. The following code will produce 20 random numbers from 1 to 10: #include <cstdlib>A better method, though slightly more complicated, is given below. This overcomes problems that are sometimes experienced with some types of pseudo random number generator that might be supplied with your compiler. As before, this will output 20 random numbers from 1 to 10. #include <iostream> Conclusion If you need to use a pseudo random number generator for anything even remotely serious you should avoid the simple generator that comes with your compiler and use something more sophisticated instead. That said, rand() still has its place and you may find it useful. |
| ||
| Re: C++ Random Numbers I hate to be forced to pm you so many times Bob but In my internet explorer browser the font of your webpage is as small as ants and I don't know how to make them look bigger. About this tutorial , I would like to know what is the " actual " use of random number generating. |
| ||
| Re: C++ Random Numbers Thanks for the feedback about the font size on my web site. I wasn't aware that anyone had a problem with it till now. I'll look into it. Perhaps you could let me know what your screen resolution is set to, or anything else that you feel might be relevant. Is the font too small on all of the pages? Time is short right now but in the near future I'll try to come up with a generic solution. In the meantime, the content is available as a PDF download from the site, or can be sent out via email. As for the use of generating random numbers, well almost any use really. For example, someone might simulate rolling a dice in their program, generating numbers in the range 1 to 6, or have an array of character strings and generate them seemingly at random by generating a random number within the range of valid indexes for the array. A lottery program might generate numbers using rand(). Almost anything you can think of, but remember that the random number generators that ship with compilers are usually pretty basic and not adequate for serious applications, e.g. scientific or crypto use. Better generators are available. |
| ||
| Re: C++ Random Numbers Quote:
my question is, for the functions on choosing random numbers in a specific range, what should i do to make the cout one by one? As in, like the function given above, it gives the whole 20 outputs at once, but what i would like to do is to get the output one by one, how could i do that? and let's say i have a range from 2 to N, what should i do to get the output only from 2 to N and not 0 to N?because what's given in the previous thread is a function to choose from 0 to N. thank you :D |
| ||
| Re: C++ Random Numbers Hi BOb, Thanks for the random number generator programs. I want to experiment with true random number generator and need a program that runs by a input through the keyboard or soundcard. that is a word or a noise - a wave file. I must get the numbers from 00 to 99 each one from every decade. e.g, oo,13,24,37,49,52,65,73,88,91; Please send me your tutorial on this through my e-mail also. Thanks and best regards, Bob, Jyeshta |
| ||
| Re: C++ Random Numbers Hi Bob, Good day, I tried to execute the program[last one] you presented there in the random number generator file. I have TURBOC 30 which is C++ compiler and says that it don't have i0stream, and the other two header files, Will you please send them to me? I tried to install Boreland C++ but it is not showing the compiler . When I click on the icon it just appears and dissappears. I have windows XP and don't know how to solve these problems. Your help is highly appreciated, Thanks and best regards, BOb, Jyeshta |
| ||
| Re: C++ Random Numbers Hey, Ive been playing around with your random number generator and I have a couple questions, first I was wondering how can i make it where numbers can't repeat themselves, to put every number in once. The second question is, is there any code that you can put in names nd generate them in random order. Thanks |
| ||
| Re: C++ Random Numbers Quote:
Quote:
"Bill" "Bob" "James" "Chris" "Thomas" so you would generate numbers from 0 to 4 and might get: 3 1 4 0 2 in a separate array. Then copy across from the string array the string at the index specified by the second array. Then it becomes: "Chris" "Bob" "Thomas" "Bill" "James" Hope this helps :) |
| ||
| Re: C++ Random Numbers Quote:
for example: #include <iostream> |
| ||
| Re: C++ Random Numbers Quote:
|
| All times are GMT -4. The time now is 7:50 pm. |
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC