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


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


Ruby中的gcdlcm()函數返回一個數組,該數組具有兩個整數的最大公約數和最小公倍數。 GCD表示將兩個數字均除的最大公約數,lcm表示兩個數字的最小公倍數

用法:number1.gcdlcm(number2)

參數:該函數需要兩個數字,其gcd和lcm返回。


返回值:該函數返回一個數組,該數組由兩個數字的gcd和lcm組成

範例1:

# Ruby program of Integer gcdlcm() function 
  
# Initializing the numbers  
num1 = 10
num2 = 15
num3 = 21
num4 = 14
   
# Prints the gcd and lcm  
puts num1.gcdlcm(num2)  
puts 
puts num3.gcdlcm(num4) 

輸出

5
30

7
42

範例2:

# Ruby program of Integer gcdlcm() function 
  
# Initializing the numbers  
num1 = 22
num2 = 18
num3 = 30
num4 = 25
   
# Prints the gcd value 
puts num1.gcdlcm(num2)  
puts 
puts num3.gcdlcm(num4) 

輸出

2
198

5
150


相關用法


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