Random Number Question
Posted: Sun Mar 02, 2014 6:08 am
If I use RandomSeed(1) in my program, will it produce the same value when I use Random(100) on every OS/CPU it is run on?
Code: Select all
RandomSeed(1)
Debug Random(100); Expected output = 72
RandomSeed(ElapsedMilliseconds())
Debug Random(100); Expected output is more random.