// m 为负数则余值为负数,m 为正数则余值为正数 public static double mod(double m, double n) { return m - (int) (m / n) * n; }
提示:(int) (m / n) 会溢出
(int) (m / n)