Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class Calculator {
  2. int performAddition(int a,int b) {
  3. int result=a+b;
  4. return result;
  5. }
  6.  
  7. int performSubtraction(int a,int b) {
  8. int result=a-b;
  9. return result;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement