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
相關用法
- Ruby Integer sqrt()用法及代碼示例
- Ruby BigDecimal sqrt()用法及代碼示例
- Ruby Math erf()用法及代碼示例
- Ruby Math log()用法及代碼示例
- Ruby Math exp()用法及代碼示例
- Ruby Math cos()用法及代碼示例
- Ruby Math tan()用法及代碼示例
- Ruby Math sin()用法及代碼示例
- Ruby Math atan2()用法及代碼示例
- Ruby Math atan()用法及代碼示例
- Ruby Math atanh()用法及代碼示例
- Ruby Math asin()用法及代碼示例
- Ruby Math acosh()用法及代碼示例
- Ruby Math asinh()用法及代碼示例
- Ruby Math tanh()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Math sqrt() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。