當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Integer lcm()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer lcm() function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。