Say we've defined the following method.
public static int f(int n) { IO.print(n); return 1 + n; }
IO.println(3 + f(2 + f(1)));
1 4 8
Back to 8:00 Quiz 0