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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。