X837: Parameter Practice 2

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 5, 10, and 15 as parameters.

Your Answer:

Feedback

Your feedback will appear here when you check your answer.