Ruby中的取模函数将一个数字的取模值乘以另一个数字。
用法:number1.modulo(number2)
参数:该函数采用返回模数的number1和number2。
返回值:该函数以另一个数字返回一个数字的模值。
范例1:
# Ruby program of module 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 module 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
相关用法
- Ruby Numeric modulo()用法及代码示例
- Ruby Integer integer?用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer ceil用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer modulo() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。