当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby CMath sqrt()用法及代码示例


sqrt方法是Ruby中的Math类方法,用于计算给定值的平方根。

用法: Math.sqrt(z)

参数:在此,z是要计算其平方根的值。


返回:此方法返回给定数字的平方根。

以下示例程序旨在说明上述方法的使用:

范例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"

输出:

Square root value of a:3.0

Square root value of b:8.84024886527523

范例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"

输出:

Sqrt root value of a:88.54942122905152

Sqrt root value of b:35.12833614050059


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby CMath sqrt() Method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。