cbrt方法是Ruby中的Math类方法,用于计算给定值的立方根。
用法: 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
相关用法
- Ruby CMath sin()用法及代码示例
- Ruby CMath cos()用法及代码示例
- Ruby CMath tan()用法及代码示例
- Ruby CMath sqrt()用法及代码示例
- Ruby CMath cosh()用法及代码示例
- Ruby CMath sinh()用法及代码示例
- Ruby CMath tanh()用法及代码示例
- Ruby CMath acos()用法及代码示例
- Ruby CMath asin()用法及代码示例
- Ruby CMath atan()用法及代码示例
- Ruby Math cbrt()用法及代码示例
- Ruby Set add()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby CMath cbrt() Method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。