Ruby 整数 remainder()函数及示例
Ruby 中的 remainder() 函数返回两个数字相除时的余数。
语法 :(number1).remainder(number2)
参数 :该函数接收两个数字number1和number2,其整数除法和余数被返回。
返回值 :该函数返回余数。
示例 1 :
# Ruby program for remainder() function
# Initializing the numbers
num1 = 18
num2 = 3
num3 = 13
num4 = 5
# Printing the modulo value
puts num1.remainder(num2)
puts num3.remainder(num4)
输出:
0
3
例2 :
# Ruby program for remainder() function
# Initializing the numbers
num1 = 19
num2 = 4
num3 = 20
num4 = 5
# Printing the modulo value
puts num1.remainder(num2)
puts num3.remainder(num4)
输出:
3
0