X838: Parameter Practice 3

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 number 10 as all three parameters.

Your Answer:

Feedback

Your feedback will appear here when you check your answer.