Ruby 整数 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