divide (without loosing precision). 两个数相除(防止精度丢失)
static double divideNum(num a, num b) { return divideDec(a, b).toDouble(); }