X836: Parameter Practice 1

Assume you have access to the following method.

public int add3Ints(int a, int b, int c){
  return a + b + c;
}

Call add3Ints and pass the numbers 4, 10, and 9 as parameters.

Your Answer:

Feedback

Your feedback will appear here when you check your answer.