floor()是一个浮点类方法,它返回传递的浮点值的下限值。
用法:float.floor()
参数:浮点值,它将获得其底值
十进制数字(默认= 0)
返回:最小数字> =以n位小数点精度浮点。
对于-ve精度:整数,至少n位数字.abs尾随零。
对于+ ve精度:浮点数。
范例1:
# Ruby code for floor() method
a = -56.23333333
b = 56.784
c = 222.8868686
# Printing result
puts "floor value of a:#{a.floor}\n\n"
puts "floor value of b:#{b.floor}\n\n"
puts "floor value of c:#{c.floor}\n\n"
输出:
floor value of a:-57 floor value of b:56 floor value of c:222
范例2:
# Ruby code for floor() method
a = -0.78779393
b = -50006.784 + 34
c = 289 + 22.8868686
# Printing result
puts "floor value of a:#{a.floor}\n\n"
puts "floor value of b:#{b.floor}\n\n"
puts "floor value of c:#{c.floor}\n\n"
输出:
floor value of a:-1 floor value of b:-49973 floor value of c:311
相关用法
- Ruby Float nan?()用法及代码示例
- Ruby Float quo()用法及代码示例
- Ruby Float arg()用法及代码示例
- Ruby Float zero?()用法及代码示例
- Ruby Float eql()用法及代码示例
- Ruby Float negative()用法及代码示例
- Ruby Float denominator()用法及代码示例
- Ruby Float divmod()用法及代码示例
- Ruby Float numerator()用法及代码示例
- Ruby Float phase()用法及代码示例
- Ruby Float positive()用法及代码示例
- Ruby Float fdiv()用法及代码示例
- Ruby Float ceil()用法及代码示例
- Ruby Float round()用法及代码示例
- Ruby Float rationalize()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby Float floor() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。