Advertisement
Guest User

Untitled

a guest
Nov 24th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class Calculator {
  2. private int a = 4;
  3. private int b = 5;
  4.  
  5. public int getSum(int a, int b) {
  6. return a + b;
  7. }
  8.  
  9. public void getResult() {
  10. System.out.println("text");
  11. }
  12.  
  13. public static void main(String[] args) {
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement