static void Main(string[] args) { Licenciatura Martin = new Licenciatura("Martin", "Sistemas", "Samsung", "INVOLVE"); Posgrado Jesus = new Posgrado("Jesus", "Sistemas", "Inteligencia artificial"); Alumnos Veranda = new Alumnos("Veranda", "Sistemas"); Martin.Print(); Jesus.Print(); Veranda.Print(); }
static void Main(string[] args) { Alumnos Jose = new Alumnos("Jose", "ING. Sistemas"); Licenciatura Sofia = new Licenciatura("Sofia", "ING. Sistemas", "ITT", "SONY"); Posgrado Ernesto = new Posgrado("Ernesto", "Ciencias en Tecnologias Avanzadas", "Inteligencia Artificial"); Jose.Print(); Sofia.Print(); Ernesto.Print(); }
static void Main(string[] args) { //Creacion de tres objetos //el primero siendo el de Licenciatura Licenciatura Jerry = new Licenciatura("Jerry", "Sistemas", "CENIDE", "Planatronics"); //el segundo siendo el de posgrado Posgrado Tom = new Posgrado("Tom", "Ciencias computacionales", "Inteligencia artificial"); //el tercero siendo el de un alumno en general Alumnos Jeff = new Alumnos("Jeff", "TICS"); //Impresion por medio del print creado en las tres clases Jerry.Print(); Tom.Print(); Jeff.Print(); }