MCPcopy Create free account
hub / github.com/andreabergia/rjvm / floatAndIntMath

Method floatAndIntMath

vm/tests/resources/rjvm/NumericTypes.java:17–22  ·  view source on GitHub ↗
(int i, float f)

Source from the content-addressed store, hash-verified

15 }
16
17 private static void floatAndIntMath(int i, float f) {
18 tempPrint(i + f);
19 tempPrint((int) (i + f));
20 tempPrint((long) (i + f));
21 tempPrint((double) (i + f));
22 }
23
24 private static void longMath(int i, long l) {
25 tempPrint(l - i);

Callers 1

mainMethod · 0.95

Calls 1

tempPrintMethod · 0.95

Tested by

no test coverage detected