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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。