(int i, double d)
| 29 | } |
| 30 | |
| 31 | private static void doubleMath(int i, double d) { |
| 32 | tempPrint(i + d); |
| 33 | tempPrint((int) (i + d)); |
| 34 | tempPrint((float) (i + d)); |
| 35 | tempPrint((long) (i + d)); |
| 36 | } |
| 37 | |
| 38 | private static void negate(int i, long l, float f, double d) { |
| 39 | tempPrint(-i); |