Buscar..


Introducción

Cómo generar un número aleatorio en Ruby.

Observaciones

Alias ​​de Random :: DEFAULT.rand. Esto utiliza un generador de números pseudoaleatorios que se aproxima a la aleatoriedad verdadera

6 caras mueren

   # Roll a 6 sided die, rand(6) returns a number from 0 to 5 inclusive
   dice_roll_result = 1 + rand(6)

Generar un número aleatorio desde un rango (inclusive)

# 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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow