Hello there,
can anyone help me with this question?
i'm new in java and need a nice help!
Consider the following method:
public static void calculator(int i, int j)
{
System.out.println(i + "+" + j + "=" + (i+j));
}
Write the instruction for invoking method
calculator() with values 7 and 12.