Rnd ( [ Min [ , Max ] )
Computes a pseudo-random floating point number, using the Lehmer algorithm.
- If no parameters is specified, returns a pseudo-random number in the interval [ 0 , 1 ].
- If the one parameter is specified, returns a pseudo-random in the interval [ 0 , Min ].
- If the two parameters are specified, returns a pseudo-random in the interval [ Min , Max ].
Examples
' Between 0 and 1
PRINT Rnd
0.019539254718
' Between 0 and 2
PRINT Rnd(2)
0.040205506608
' Between Pi and Pi*2
PRINT Rnd(Pi, Pi(2))
3.204108046818
See also
Randomize
Previous: RMDIR Next: Rol