Ruby中的ceil函数返回小于或等于int的最小数字,精度为n位十进制数字。默认值被认为是0。如果给定的精度为负,则返回值是一个至少有ndigits.abs尾随零的整数。当n位数字为正数时,它将返回self。
用法:(number).floor(ndigits)
参数:该函数采用要返回其下限值的整数和一个指定要返回的精度的单个参数ndigits。
返回值:该函数返回小于或等于它的最小整数。
范例1:
# Ruby program of Integer floor() function
# Initializing the numbers
num1 = 10
num2 = 17
num3 = 17.5
num4 = 21.5
# Prints the floor value
puts num1.floor
puts num2.floor(2)
puts num3.floor(-1)
puts num4.floor(0)
输出:
10 17.0 10 21
范例2:
# Ruby program of Integer floor() function
# Initializing the numbers
num1 = 13
num2 = -90
num3 = 90
num4 = 81.7
# Prints the floor value
puts num1.floor
puts num2.floor(2)
puts num3.floor(-1)
puts num4.floor(0)
输出:
13 -90 90 81
相关用法
- Ruby Rational floor()用法及代码示例
- Ruby Numeric floor()用法及代码示例
- Ruby Integer integer?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer odd?用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer floor() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。