Ruby has a creator of random numbers (or aleatory) already integrated into its code, which is the method rand. Since version 1.9.3, Ruby added the ability to use ranges as arguments to rand, which produces a more fluid code.
Now we are going to examine some of the ways to create a random number using the rand method and its variations.
If you call rand directly, you get a float greater than or equal to 0.0 and less than 1.0.
rand() 0.0047585340125684
If you put in it an integer argument (such as, for example, rand (7)), you will get an integer value greater than or equal to 0 and less than 7.
rand (7) 5
If you are looking for a number within a particular range you can use:
rand (1 ..10) 8
Where the initial value is the lower range limit, and the final value will include the higher limit.
If you are looking for a non-inclusive range, you can use 3 points:
rand (1 ...10) 9
This will delete the final value of the random number generation, in this case, 10. You could do the same thing using the previous form and entering the last value that you want to include:
rand (1 ..9) 8
The random.rand works quite similar to rand:
Random.rand (10...42) # => Same as rand (10 ...42)
However, when the argument value is a negative integer or zero, this method returns ArgumentError, unlike rand.
Do you know other ways to create random numbers in Ruby? Share your comments in the section below!
If you want to explore other issues, can check our LCTV videos about Ruby. Below we have some examples:
You can also subscribe to some channels that broadcasts in Ruby, such as the following:
Another cool way to find out interesting things about Ruby is to access our project page!
We’re thrilled to announce an exciting opportunity for you to win not one but two…
Acquiring practical skills is crucial for career advancement and personal growth. Education Ecosystem stands out…
Artificial Intelligence (AI) has been making significant strides in various industries, and the software development…
Another week to bring you the top yield platforms for three of the most prominent…
If you hold a large volume of LEDU tokens above 1 million units and wish…
It’s another week and like always we have to explore the top yield platforms for…
View Comments
Useful. Thank you! =)