So, in essence, you want your random numbers not to be random, that's a kind of oxymoron.

Running your code on my Windows box, with ActiveState Perl v5.16.3, I get 56:

C:\Users\Laurent>perl -e "srand(555); my $range = 1000; my $number = i +nt(rand($range)); print $number ;" 56
On the same Windows platform, running Perl v5.14.4 under Cygwin, I get 466:
Laurent@Laurent-HP ~ $ perl -e 'srand(555); > my $range = 1000; > my $number = int(rand($range)); > print $number,"\n";' 466
If you really need the same pseudo-random numbers as on you old Perl version, then run your old Perl version, write the pseudo-numbers generated to a file and use the numbers in this file on your new version.

But the bottom line is, IMHO, that you should probably not try to rely on a random number generator to give you always the same sequence of numbers.


In reply to Re: rand() function on Windows systems by Laurent_R
in thread rand() function on Windows systems by bakiperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.