Advertisement
MkArs

dz

Oct 28th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package Pet;
  2.  
  3. public class Pet {
  4.  
  5. float weight;
  6. float height;
  7. int age;
  8. String color;
  9.  
  10. public void eat() {
  11. System.out.println("I am very hungry, let us eat some chips!");
  12. }
  13.  
  14. public void sleep() {
  15. System.out.println("good night, see you next day! ^-^");
  16. }
  17.  
  18. protected String say(String aWord) {
  19. String PetResponse = " Ok, brother!" + aWord;
  20. return PetResponse;
  21.  
  22. }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement