Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package e1;
- public class main {
- public static void main(String[] args) {
- Especialista esp = new Especialista("Manolo","Pérez","99999999A",666666666,"norcoreano", 40,false);
- System.out.println(esp.getNombre());
- System.out.println(esp.getApellido());
- System.out.println(esp.getDNI());
- System.out.println(esp.getTelf());
- System.out.println(esp.getNacionalidad());
- System.out.println(esp.isPeligro());
- Humano humano2 = new Humano("Fulgencio","García","11111111B",666666669,"mongol",98);
- Pelicula p1 = new Pelicula("\nMinions",1500000.0f);
- System.out.println(p1.getTitulo());
- p1.insertarHumano(esp);
- p1.insertarHumano(humano2);
- p1.printSalaries();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement