当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。