Ruby | Función aleatoria srand()

Random#srand() : srand() es un método de clase Random que devuelve un número pseudoaleatorio del sistema. Sintaxis: Random.srand() Parámetro: valores aleatorios Devuelve: número pseudoaleatorio del sistema. Ejemplo 1 : # Ruby code for Random.srand() method    # declaring Random value date_a = Random.srand()    # new arbitrary random value puts «Random form : #{date_a}\n\n» Producción … Continue reading «Ruby | Función aleatoria srand()»

Ruby | Función aleatoria new()

Random#new() : new() es un método de clase Random que crea un nuevo PRNG usando seed para establecer el estado inicial. Sintaxis: Random.new() Parámetro: valores aleatorios Retorno: un nuevo PRNG usando semilla para establecer el estado inicial. Ejemplo 1 : # Ruby code for Random.new() method    # declaring Random value date_a = Random.new()    … Continue reading «Ruby | Función aleatoria new()»

Ruby | Función al azar()

Random#rand() : rand() es un método de clase Random que genera un valor aleatorio. Sintaxis: Random.rand() Parámetro: valores aleatorios Retorno: genera un valor aleatorio. Ejemplo 1 : # Ruby code for Random.rand() method    # declaring Random value date_a = Random.rand()    # new arbitrary random value puts «Random form : #{date_a}\n\n» Producción : Random … Continue reading «Ruby | Función al azar()»