Advertisement
desant74268

OOPHW

Jan 19th, 2022
1,309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package ru.itsjava.oop.hw;
  2.  
  3. public class MainLexus {
  4.     public static void main(String[] args) {
  5.         Lexus lx = new LX();
  6.         Lexus rx = new RX();
  7.  
  8.         System.out.println("lx.getModel() = " + lx.getModel());
  9.         System.out.println("rx = " + rx);
  10.  
  11.  
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement