(Object x, Object y)
| 199 | } |
| 200 | |
| 201 | static public Number remainder(Object x, Object y){ |
| 202 | Ops yops = ops(y); |
| 203 | if(yops.isZero((Number) y)) |
| 204 | throw new ArithmeticException("Divide by zero"); |
| 205 | return ops(x).combine(yops).remainder((Number)x, (Number)y); |
| 206 | } |
| 207 | |
| 208 | static public double quotient(double n, double d){ |
| 209 | if(d == 0) |
no test coverage detected