Advertisement
Vladkoheca

main.java

Feb 19th, 2025 (edited)
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | Source Code | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         System.out.println();
  4.         FlyingTaxi flyingTaxi = new FlyingTaxi("Phillips", 100, 100);
  5.         flyingTaxi.displayInfo();
  6.         System.out.println();
  7.         flyingTaxi.flyToDestination("India", 40);
  8.         System.out.println();
  9.         Passenger passenger = new Passenger(30, "Ilko", 30);
  10.         System.out.println(passenger);
  11.         System.out.println(passenger.setPreferredAltitude(40));
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement