當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。