Help for this page

Select Code to Download


  1. or download this
                   Apply "int()" to the value returned by "rand()" if you 
    +want
                   random integers instead of random fractional numbers.  
    +For
    ...
                   returns a random integer between 0 and 9, inclusive.
    
  2. or download this
    my @answers=();
    push @answers,(int(rand(251))+250) foreach (0..99);