Guest User

Untitled

a guest
Jul 15th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package Laboratorio7;
  2. public class Lab7 {
  3.  
  4. private int num1 =2;
  5. private int num2 =2;
  6.  
  7. public void setNum1(int num1) {
  8. this.num1 = num1;
  9. }
  10.  
  11. public int getNum1() {
  12. return num1;
  13. }
  14.  
  15. public void setNum2(int num2) {
  16. this.num2 = num2;
  17. }
  18.  
  19. public int getNum2() {
  20. return num2;
  21. }
  22.  
  23. public int getSuma(int num1, int num2){
  24. return num1+num2;
  25. }
  26. }
Add Comment
Please, Sign In to add comment