On Wed, Jul 18, 2001 at 09:21:36PM +0200, Christian Perle wrote:
Hi Christian,
"If you want to generate a random integer between 1 and 10, you should always do it by using high-order bits, as in
j=1+(int) (10.0*rand()/(RAND_MAX+1.0));
and never by anything resembling
j=1+(rand() % 10);
(which uses lower-order bits)."
Mhh. Trotzdem komisch. Ich meine mal gelernt zu haben, daß es heutzutage genug PZZGs gibt, bei denen nicht die oberen Bits besser sind als die unteren.
Reinhard