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