int randomNumber = (arc4random() % 83) + 1;
Is this the best way to generate "the most random" number? Or is there a better way to generate a random number?
Is this the best way to generate "the most random" number? Or is there a better way to generate a random number? |
|||
|
|
arc4random has a superior algorithm for generating random numbers based on the current time. There are other rand functions but they are not as good and require seeding. |
|||
|
When you use However, you still have truncation issues: i.e., because (I assume the range of |
|||||||||||
|
|
The best random number generator I've ever seen (as well as a very clear definition of what random means) can be found in Stephen Wolfram's A New Kind of Science. He's been using a very simple cellular automata as his random number generator for decades in his Mathematica software program so it's been extremely well tested. |
|||
|
|