(int i, long l)
| 22 | } |
| 23 | |
| 24 | private static void longMath(int i, long l) { |
| 25 | tempPrint(l - i); |
| 26 | tempPrint((int) (l - i)); |
| 27 | tempPrint((float) (l - i)); |
| 28 | tempPrint((double) (l - i)); |
| 29 | } |
| 30 | |
| 31 | private static void doubleMath(int i, double d) { |
| 32 | tempPrint(i + d); |