El método sqrt es un método de clase matemática en Ruby que se usa para calcular la raíz cuadrada del valor dado.
Sintaxis: Matemáticas.sqrt(z)
Parámetro: Aquí, z es el valor cuya raíz cuadrada se quiere calcular.
Devoluciones: este método devuelve la raíz cuadrada del número dado.
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
# Ruby code for sqrt() method require 'cmath' # Initialize values a = 9 b = 78.15 # Printing result puts "Square root value of a : #{CMath.sqrt(a)}\n\n" puts "Square root value of b : #{CMath.sqrt(b)}\n\n"
Producción:
Square root value of a : 3.0 Square root value of b : 8.84024886527523
Ejemplo 2:
# Ruby code for sqrt() method require 'cmath' # Initializing value a = 7841 b = 1234 # Printing result puts "Sqrt root value of a : #{CMath.sqrt(a)}\n\n" puts "Sqrt root value of b : #{CMath.sqrt(b)}\n\n"
Producción:
Sqrt root value of a : 88.54942122905152 Sqrt root value of b : 35.12833614050059
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA