Ruby 整数 divmod()函数及示例
Ruby中的 divmod() 函数返回整数除法值和余数。
语法 :(number1).divmod(number2)
参数 :该函数接收两个数字number1和number2,其整数除法和余数被返回。
返回值 :该函数返回整数除法值和余数。
例子 #1 :
# Ruby program of Integer divmod() function
# Initializing the numbers
num1 = 15
num2 = 4
num3 = 10
num4 = 2
# Prints the integer division
# and its remainder
puts num1.divmod(num2)
puts
puts num3.divmod(num4)
输出:
3
3
5
0
例子#2 。
# Ruby program of Integer divmod() function
# Initializing the numbers
num1 = 19
num2 = 2
num3 = 28
num4 = 13
# Prints the integer division
# and its remainder
puts num1.divmod(num2)
puts
puts num3.divmod(num4)
输出:
9
1
2
2