multiply (without loosing precision). 两个数相乘(防止精度丢失)
static double multiplyNum(num a, num b) { return multiplyDec(a, b).toDouble(); }