Guest User

Untitled

a guest
May 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class GoodDog {
  2. private int size;
  3.  
  4. public int getSize() {
  5. return size;
  6. }
  7.  
  8. public void setSize(int s) {
  9. size = s;
  10. }
  11.  
  12. void bark() {
  13. if (size > 60) {
  14. System.out.println("Woof! Woof!");
  15. }else if (size > 14) {
  16. System.out.println("Ruff! Ruff!");
  17. }else {
  18. System.out.println("Yip! Yip!");
  19. }
  20. }
  21. }
Add Comment
Please, Sign In to add comment