fdiv()是Ruby中的内置函数,通过执行除法返回float。
用法: rat.fdiv(numric)
参数:该函数接受单个参数
返回值:通过执行除法返回浮点数
例子1:
# Ruby program for fdiv() method
# Initialize rational number
rat1 = Rational(7, -3)
# Prints the rational number
puts rat1.fdiv(2)
输出:
-1.1666666666666667
例子2:
# Ruby program for fdiv() method
# Initialize rational number
rat1 = Rational(7)
# Prints the rational number
puts rat1.fdiv(2)
输出:
3.5
相关用法
- Ruby Numeric fdiv()用法及代码示例
- Ruby Integer fdiv()用法及代码示例
- Ruby Rational quo()用法及代码示例
- Ruby Rational abs()用法及代码示例
- Ruby Rational round()用法及代码示例
- Ruby Rational truncate()用法及代码示例
- Ruby Rational to_s()用法及代码示例
- Ruby Rational to_r()用法及代码示例
- Ruby Rational ceil()用法及代码示例
- Ruby Rational to_i()用法及代码示例
- Ruby Rational floor()用法及代码示例
- Ruby Rational negative?()用法及代码示例
- Ruby Rational positive?()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Rational fdiv() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。