算法最大公约数本页总览最大公约数1. 辗转相除法 2. 代码 function gcd(a: number, b: number): number { while (a % b !== 0) { const temp = a % b a = b b = temp } return b}