浮點數divmod()是一個浮點類方法,該方法返回一個在除以兩個數後具有商和餘數的數組。
用法: float.divmod()
參數:浮點數價值-股息和除數
返回:具有商和餘數的數組。
範例1:
# Ruby code for divmod() method
# Initializing value
a = 4.0
b = 2.0
# Printing result
puts "Division a/b:#{a.divmod(b)}\n\n"
puts "Division b/a:#{b.divmod(a)}\n\n"
輸出:
Division a/b:[2, 0.0] Division b/a:[0, 2.0]
範例2:
# Ruby program for divmod() method
# Initializing value
a = 0
b = 2.0
# dividing by zero - gives error
puts "Division a/b:#{a.divmod(b)}\n\n"
puts "Division b/a:#{b.divmod(a)}\n\n"
輸出:
source_file.rb:8:in `divmod':divided by 0 (ZeroDivisionError) from source_file.rb:8:in `' Division a/b:[0, 0.0]
相關用法
- Ruby BigDecimal divmod用法及代碼示例
- Ruby Integer divmod()用法及代碼示例
- Ruby Numeric divmod()用法及代碼示例
- Ruby Float nan?()用法及代碼示例
- Ruby Float quo()用法及代碼示例
- Ruby Float arg()用法及代碼示例
- Ruby Float eql()用法及代碼示例
- Ruby Float zero?()用法及代碼示例
- Ruby Float phase()用法及代碼示例
- Ruby Float angle()用法及代碼示例
- Ruby Float modulo()用法及代碼示例
- Ruby Float positive()用法及代碼示例
- Ruby Float fdiv()用法及代碼示例
- Ruby Float coerce()用法及代碼示例
- Ruby Float numerator()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby Float divmod() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。