Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- public class App {
- public static void main(String[] args) {
- System.out.println();
- Cat c2 = new Cat("Lion","yellow",15);
- System.out.println(c2);
- c2.foodCat();
- System.out.println();
- Cat c1 = new Cat();
- System.out.println(c1);
- System.out.println();
- Cat c3 = new Cat("Tiger","orange",35);
- System.out.println(c3);
- c3.sleepCat();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment