Ruby中的fdiv()函数将两个数字相除后返回浮点结果。
用法:(number1).fdiv(number2)
参数:该函数需要两个数字number1和number2,其中number1是被除数,number2是除数。
返回值:该函数返回两个数字的浮点除法。
范例1:
# Ruby program of Integer fdiv() function
# Initializing the numbers
num1 = 5
num2 = 2
num3 = 9
num4 = 3
# Prints the divison
puts num1.fdiv(num2)
puts num3.fdiv(num4)
输出:
2.5 3.0
范例2:
# Ruby program of Integer fdiv() function
# Initializing the numbers
num1 = 15
num2 = 4
num3 = 10
num4 = 2
# Prints the integer divison
puts num1.fdiv(num2)
puts num3.fdiv(num4)
输出:
3.75 5.0
相关用法
- Ruby Rational fdiv()用法及代码示例
- Ruby Numeric fdiv()用法及代码示例
- Ruby Float fdiv()用法及代码示例
- Ruby Integer integer?用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer next用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer fdiv() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。