Ruby 数字 remainder()函数
remainder() 是Ruby中一个内置的方法,当num1除以num2时返回余数。
语法 :num1.remainder(num2)
参数 :该函数需要num1和num2被除。
返回值 :它返回余数。
例子 1 :
# Ruby program for remainder()
# method in Numeric
# Initialize a number
num1 = 17
num2 = 4
# Prints the remainder part
puts num1.remainder(num2)
输出:
1
例2 :
# Ruby program for remainder()
# method in Numeric
# Initialize a number
num1 = 12
num2 = 5
# Prints the remainder part
puts num1.remainder(num2)
输出:
2