Python/ref math gcd

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.gcd()方法

Methods数学方法

找到两个整数的最大公约数:

    #Import math Library
import math 

#find the  the greatest 
    common divisor of the two integers
print (math.gcd(3, 6))
print (math.gcd(6, 
    12))
print (math.gcd(12, 36))
print (math.gcd(-12, -36))
print (math.gcd(5, 
    12))
print (math.gcd(10, 0))
print (math.gcd(0, 34))
print (math.gcd(0, 
    0))

定义和用法

The math.gcd() 方法返回两个整数的最大公约数 int1 and int2 .

GCD是最大的除数,可除以余数。

GCD也被称为最高公因子(HCF)。

Tip: gcd(0,0)返回0。

句法

math.gcd(int1, int2)

参数值

参数 描述
int1 需要。找到GCD的第一个整数
int2 需要。查找GCD的第二个整数

技术细节

返回值: An

int 值,代表两个整数的最大公约数(GCD)

Python版本: 3.5

Methods数学方法