Ruby中的lcm()函数返回两个数字的lcm。 LCM表示可被两个数字整除的最低公倍数。
用法:number1.lcm(number2)
参数:该函数需要两个返回其lcm的数字。
返回值:该函数返回两个数字的lcm
范例1:
# Ruby program of Integer lcm() function
# Initializing the numbers
num1 = 10
num2 = 15
num3 = 21
num4 = 14
# Prints the lcm value
puts num1.lcm(num2)
puts num3.lcm(num4)
输出:
30 42
范例2:
# Ruby program of Integer lcm() function
# Initializing the numbers
num1 = 22
num2 = 18
num3 = 30
num4 = 25
# Prints the lcm value
puts num1.lcm(num2)
puts num3.lcm(num4)
输出:
198 150
相关用法
- Ruby Integer integer?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer succ()用法及代码示例
- Ruby Integer truncate()用法及代码示例
- Ruby Integer magnitude用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer lcm() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。