Ruby CMath cbrt()方法与实例
cbrt方法 是Ruby中的一个数学类方法,用于计算给定值的立方根。
语法: Math.cbrt(z)
参数: 这里,z是要计算其立方根的值。
返回: 该方法返回给定数字的立方根。
下面的程序说明了上述方法的使用。
例1 :
# Ruby code for cbrt() method
require 'cmath'
# Initializing value
a = 27
b = 5.45
# Printing result
puts "Cube root value of a : #{CMath.cbrt(a)}\n\n"
puts "cube root value of b : #{CMath.cbrt(b)}\n\n"
输出
Cube root value of a : 3.0
cube root value of b : 1.7598088635408027
例2 :
# Ruby code for cbrt() method
require 'cmath'
# Initializing values
a = 78
b = 729
# Printing result
puts "Cube root value of a : #{CMath.cbrt(a)}\n\n"
puts "cube root value of b : #{CMath.cbrt(b)}\n\n"
输出
Cube root value of a : 4.272658681697917
cube root value of b : 8.999999999999998