What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Random number generator?

Random number generator?
Author: Message:
LunarCrisis
New Member
*

Avatar

Posts: 12
– / Male / –
Joined: Sep 2003
RE: RE: Random number generator?
quote:
Originally posted by KeyStorm
randInt = ( rand() % 10 ) + 1;

or similar


Actually, since the low order bits are usually less random (using rand()) then the higher order bits, this would be more random:

randInt = (int)( rand() / (RAND_MAX + 1) * 10 + 1 )

the method previously posted uses only the lowest few bits (the least random), while this method relies mostly on the high order bits.

Yes, it's picky :p

This post was edited on 09-06-2004 at 04:42 AM by LunarCrisis.
I wish I were Yulia from t.A.T.u.
Not because of how she looks,
but because she gets to kiss Lena :P
09-06-2004 04:41 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Random number generator? - by Phrive on 07-23-2004 at 01:40 PM
RE: Random number generator? - by KeyStorm on 07-23-2004 at 01:43 PM
RE: Random number generator? - by Phrive on 07-23-2004 at 01:44 PM
RE: Random number generator? - by Millenium_edition on 07-23-2004 at 01:44 PM
RE: Random number generator? - by KeyStorm on 07-23-2004 at 01:50 PM
RE: RE: Random number generator? - by LunarCrisis on 09-06-2004 at 04:41 AM
RE: Random number generator? - by Phrive on 07-23-2004 at 01:52 PM
RE: Random number generator? - by matty on 07-23-2004 at 02:18 PM
RE: Random number generator? - by Phrive on 07-23-2004 at 02:19 PM
RE: Random number generator? - by dotNorma on 07-23-2004 at 05:08 PM
RE: Random number generator? - by RaceProUK on 07-24-2004 at 09:37 AM
RE: Random number generator? - by CookieRevised on 09-06-2004 at 01:05 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On