Randomnumber

From Mesham
Revision as of 22:17, 10 January 2010 by Polas (talk | contribs) (Created page with '== Overview == This randomnumber[n,x] function will return a random number between ''n'' and ''x''. ''Note: A whole number will be returned UNLESS you pass the bounds of 0,1 and …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Overview

This randomnumber[n,x] function will return a random number between n and x. Note: A whole number will be returned UNLESS you pass the bounds of 0,1 and in this case a decimal number is found.

  • Pass: Two integers defining the bounds of the random number
  • Returns: A Double representing the random number

Example

var a:=randomnumber[10,20];
var b:=randomnumber[0,1]

In this case, a is a whole number between 10 and 20, whereas b is a decimal number