js 獲取最大公約數

gcd(a, b) { if (b == 0) { return a } let r = a % b console.log(r) return this.gcd(b, r) },    
相關文章
相關標籤/搜索