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