Rnd

Rnd ( [ Min [ , Max ] )

Computes a pseudo-random floating point number, using the Lehmer algorithm.


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