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


Ruby Math sqrt()用法及代碼示例


sqrt()是Ruby中的內置函數,返回給定值的平方根。

用法:Math.sqrt(value) 

參數:該函數接受一個必須返回其平方根的強製參數值。


返回值:返回值的平方根。

例子1

#Ruby program for sqrt() function 
  
#Assigning values 
val1 = 4 val2 = 9 val3 = 64 val4 = 100 
  
#Prints the sqrt() value 
                                   puts Math.sqrt(val1) 
                                       puts Math.sqrt(val2) 
                                           puts Math.sqrt(val3) 
                                               puts Math.sqrt(val4)

輸出

2.0
3.0
8.0
10.0

例子2

#Ruby program for sqrt() function 
  
#Assigning values 
val1 = 40 val2 = 19 val3 = 164 val4 = 1200 
  
#Prints the sqrt() value 
                                      puts Math.sqrt(val1) 
                                          puts Math.sqrt(val2) 
                                              puts Math.sqrt(val3) 
                                                  puts Math.sqrt(val4)

輸出

6.324555320336759
4.358898943540674
12.806248474865697
34.64101615137755

參考:https://devdocs.io/ruby~2.5/math#method-c-sqrt



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Math sqrt() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。