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


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


Ruby中的gcd()函數返回兩個數字的gcd。 GCD表示將兩個數字相除的最大公約數。

用法:number1.gcd(number2)

參數:該函數需要返回gcd的兩個數字。


返回值:該函數返回兩個數字的gcd

範例1:

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

輸出

5
7

範例2:

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

輸出

2
5


相關用法


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