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