In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?
|
feedback
|
|
What is wrong with rand(range) ? If you needed a random integer to simulate a roll of a six-sided die, you'd use: 1 + rand(6). A roll in craps could be simulated with 2 + rand(6) + rand(6). Finally, if you just need a random float, just call rand with no arguments. (From first result of google search: Ruby Random Numbers) As Marc-André Lafortune mentions in his answer below (go upvote it), Ruby1.9.2 has its own Random class (that Marc-André himself helped to debug, hence the 1.9.2 target for that feature). For instance, in this game where you need to guess 10 numbers, you can initialize them with:
Note:
This is why the equivalent of | |||||||||||||||||
feedback
|
|
You can use Ruby 1.9.2 also introduces the
The
In Ruby 1.9.3, you are able to call:
Available for all versions of Ruby by requiring my Notes on In most cases, the simplest is to use If you use The cases where
| |||||||||||||||
feedback
|
|
Apparently srand is called when the ruby interpreter is started. Therefore unless you have a specific need to reset the seed - extra calls to srand are unnecessary. | |||
|
feedback
|
|
Well, I figured it out. Apparently there is a builtin (?) function called rand:
If someone answers with a more detailed answer, I'll mark that as the correct answer. | |||||||
feedback
|
|
Don't forget to seed the RNG with srand() first. | |||||||||
feedback
|