Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. public class Calculator {
  3.  
  4. public int getSum(int i, int j) {
  5. // TODO Auto-generated method stub
  6. return i + j;
  7. }
  8.  
  9. public void printResult(int sum) {
  10. System.out.println("The sum is:" + sum);
  11.  
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement