I am trying to produce a random float within the range -50.0 and 50.0 inclusively, using rand(). I've looked everywhere for an answer but it deals with ints and % operator.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try this:
|
||||
|
|
|
Honestly, all present answers don't explain that there is a change in distribution in their solutions(I am assuming that rand() follows the uniform distribution! correct me if I am wrong please). Use a library please, and my recommendation is using the new facilities in C++0x:
If you can't, Boost is a perfect choice. That way, you can use my_rand() just like good ol' rand():
|
|||||||||
|
|
Try this:
|
|||
|
|