首页 > TAG信息列表 > 数学方法

JS数学方法

数学方法 数学对象Math 1,random() Math.random()--获取0-1的随机数 2,round() Math.round(n)--四舍五入取整 3,ceil() Math.ceil(n)--对n向上取整 4,floor() Math.floor(n)--对n向下取整 5,pow() Math.pow(n,m)--对n取m次幂 6,sqrt() Math.aqrt(n)--对n开平方

求最大公因数的两种数学方法

1. 更相减损术 可半者半之,不可半者,副置分母、子之数,以少减多,更相减损,求其等也。以等数约之。 ——《九章算术》 int gcd(int a, int b) { if (a > b) return gcd(a-b, b); if (a < b) return gcd(b-a, a); return a; } 2. 辗转相除法 int gcd(int