Ruby Math cbrt()函数
cbrt() 是Ruby中的一个内置函数,用于返回一个给定值的立方根。
语法 :Math.cbrt(value)
参数 :该函数接受一个强制性的 参数值 ,其立方根将被返回。
返回值 :它返回该值的立方根。
例子 1 :
#Ruby program for cbrt() function
#Assigning values
val1 = 8 val2 = 27 val3 = 64 val4 = 1000
#Prints the cbrt() value
puts Math.cbrt(val1)
puts Math.cbrt(val2)
puts Math.cbrt(val3)
puts Math.cbrt(val4)
输出:
2.0
3.0000000000000004
4.0
10.0
例2 :
#Ruby program for cbrt() function
#Assigning values
val1 = 10 val2 = -29 val3 = 899 val4 = -87879
#Prints the cbrt() value
puts Math.cbrt(val1)
puts Math.cbrt(val2)
puts Math.cbrt(val3)
puts Math.cbrt(val4)
输出:
2.1544346900318834
-3.0723168256858475
9.651316634226061
-44.45920597627334
参考资料 : https://devdocs.io/ruby~2.5/math#method-c-cbrt