0
/ 50
public int subtract(int a, int b){ return a - b; }
Use the method defined above to subtract 35 from 45 (as in 45 - 35).
public int subtract(int a, int b){
return a - b;
}
Use the method defined above to subtract 35 from 45 (as in 45 - 35).
Your feedback will appear here when you check your answer.