MilaDimitrovaa

App-Homework

Oct 7th, 2021
1,037
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class App {
  4.     public static void main(String[] args) {
  5.  
  6.         System.out.println();
  7.         Cat c2 = new Cat("Lion","yellow",15);
  8.         System.out.println(c2);
  9.         c2.foodCat();
  10.         System.out.println();
  11.  
  12.  
  13.         Cat c1 = new Cat();
  14.         System.out.println(c1);
  15.         System.out.println();
  16.  
  17.  
  18.         Cat c3 = new Cat("Tiger","orange",35);
  19.         System.out.println(c3);
  20.         c3.sleepCat();
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment