Using the Pseudo-Random Number generator

with uniform probability. To obtain a pseudo-random number between 0 and 1, the line of code: r = random(32767)/32767.0; does the trick. One can also include a line of code that sets the initial seed, or have the program pick a ”random” seed. To generate a random number with uniform probability between a and b, the following code should work: ................
................