Package control

Examples of control.Printer


       alumno2.setEp(20);
       alumno2.setPc(20);
      
       AlumnoTRA alumno3  = new AlumnoTRA(16);             
       
       Printer impresora = new Printer();
       impresora.imprimir(alumno1);
       impresora.imprimir(alumno2);
       impresora.imprimir(alumno3);
      
       Carro miCarro =  new Carro("Uno Mille", 20993);
       impresora.imprimir(miCarro);
    }
View Full Code Here

TOP

Related Classes of control.Printer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.