Ruby Language
Générer un nombre aléatoire
Recherche…
Introduction
Comment générer un nombre aléatoire en Ruby.
Remarques
Alias de Random :: DEFAULT.rand. Cela utilise un générateur de nombres pseudo-aléatoires qui se rapproche du vrai hasard
6 faces dé
# Roll a 6 sided die, rand(6) returns a number from 0 to 5 inclusive
dice_roll_result = 1 + rand(6)
Générer un nombre aléatoire à partir d'une plage (inclus)
# ruby 1.92
lower_limit = 1
upper_limit = 6
Random.new.rand(lower_limit..upper_limit) # Change your range operator to suit your needs
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow