Advertisement
Vladkoheca

main.java

Nov 29th, 2024 (edited)
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | Source Code | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         Drone drone = new Drone("Drone of big Ilko", 30);
  4.         drone.displayInfo();
  5.         System.out.println();
  6.         drone.fly(110);
  7.         System.out.println();
  8.         Operator operator = new Operator("Ilko golemii gramadata", "Yes");
  9.         System.out.println(operator);
  10.         operator.operateDrone();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement