Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package oop;
  2.  
  3. public class lista_de_exercicios {
  4.  
  5. private String nome;
  6. private int idade;
  7. private double peso;
  8.  
  9.  
  10.  
  11. public void nascer (String n, double p) {
  12. this.idade= 0;
  13. this.nome = n;
  14. this.peso = p;
  15. }
  16.  
  17. public void fazerAniversario (){
  18. this.idade = this.idade + 1;
  19. }
  20.  
  21.  
  22. public void engordar (double kgs) {
  23. this.peso = this.peso + kgs;
  24.  
  25. }
  26.  
  27. public void emagrecer (double kgs) {
  28. this.peso = this.peso - kgs;
  29.  
  30. }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement