Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Main {
- public static void main(String[] args) {
- Drone drone = new Drone("Drone of big Ilko", 30);
- drone.displayInfo();
- System.out.println();
- drone.fly(110);
- System.out.println();
- Operator operator = new Operator("Ilko golemii gramadata", "Yes");
- System.out.println(operator);
- operator.operateDrone();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement