X843: Parameter Practice 4

public int subtract(int a, int b){
  return a - b;
}

Use the method defined above to subtract 10 from 100 (as in 100 - 10).

Your Answer:

Feedback

Your feedback will appear here when you check your answer.