Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. Motor motor = new Motor("Czerwony", "Suzuki", "GSXR");
  8. Samochod samochod = new Samochod("Niebiski", 200, "Audi");
  9.  
  10. Pojazd motor2 = new Motor("Zolty", "Yamaha");
  11. Pojazd samochod2 = new Samochod("Pomaranczowy", 220);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement