0
/ 1.0
public int subtract(int a, int b){ return a - b; }
Use the method defined above to subtract 10 from 100 (as in 100 - 10).
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 feedback will appear here when you check your answer.