Ruby 整数 modulo()函数及示例
Ruby中的 modulo 函数返回一个数字对另一个数字的模值。
语法 :number1.modulo(number2)
参数 :该函数接收number1和number2,并返回其模值。
返回值 :该函数返回一个数字对另一个数字的模值。
例子 #1 :
# Ruby program of modulo function
# Initializing the numbers
num1 = 10
num2 = 6
num3 = 13
num4 = 5
# Printing the modulo value
puts num1.modulo(num2)
puts num3.modulo(num4)
输出:
4
3
例子#2 。
# Ruby program of modulo function
# Initializing the numbers
num1 = 100
num2 = 17
num3 = 90
num4 = 29
# Printing the modulo value
puts num1.modulo(num2)
puts num3.modulo(num4)
输出:
15
3