Advertisement
desant74268

OOPHW

Jan 13th, 2022
1,043
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package ru.itsjava.oop.oopHW;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.  
  6.         Lion myfasa = new Lion("Myfasa");
  7.         Lion shram = new Lion("Shram");
  8.  
  9.  
  10.         myfasa.sayR();
  11.         shram.sayR();
  12.  
  13.         Human dima = new Human("Dmitriy", 30);
  14.  
  15.         dima.greeting();
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement