中英
最大公约数
/ zuì dà gōng yuē shù /
  • 网络释义
  • 专业释义
  • 1

     greatest common divisor

    两个数如果最大公约数greatest common divisor)为1我们就称它们为「互质。而要找出最大公约数的方法就是所谓的辗转相除法(Euclidean algorithm):

  • 2

     the “greatest common denominator”

    最大公约数(the “greatest common denominator”)

  • 3

     GCD

    def is_power(a,b): if a%b==0 and (a/b)%b==0: return True else: return False 求a和b的最大公约数GCD) def gcd(a, b): if a < b: a, b = b, a while b !

短语
查看更多
  • 双语例句
  • 1
    在线计算两个数字的最大
    The online calculation of greatest common divisor of two Numbers.
  • 2
    要合作就要照顾彼此利益和关切,寻求合作最大
    Seek cooperation will take care of each other's interests and concerns, the greatest common divisor of cooperation.
  • 3
    适用欧几里德算法来计算7735和4185的最大
    Use Euclid's algorithm to compute the greatest common divisor of 7735 and 4185.
查看更多
  • 百科
  • 最大公约数

    最大公因数,也称最大公约数、最大公因子,指两个或多个整数共有约数中最大的一个。a,b的最大公约数记为(a,b),同样的,a,b,c的最大公约数记为(a,b,c),多个整数的最大公约数也有同样的记号。求最大公约数有多种方法,常见的有质因数分解法、短除法、辗转相除法、更相减损法。与最大公约数相对应的概念是最小公倍数,a,b的最小公倍数记为[a,b]。

查看更多