安卓手机扫描二维码安装App

第1631题:gcd



The greatest common divisor of two numbers a and b (not both zero) is the largest number that divides both of them. It is denoted by gcd(a,b). If gcd(a,b)=1, we say that a and b are relatively prime.


Use the Euclidean algorithm to compute the following gcd.


gcd(225,120)=?




Euclidean algorithm: 欧几里得算法、辗转相除法.


苹果手机扫描二维码安装App
我来回答