/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package Examen.Escuela;

/**
 *
 * @author felix
 */
public class Prueba {
    
    static public void main(String args[]) {
        Escuela a = new Escuela("Facultad de Java");
        
        System.out.println(a.Lista_Alumnos("Matemáticas"));
        System.out.println(a.Lista_Alumnos("Física"));
        System.out.println(a.Lista_Alumnos("Diseño"));
        
        System.out.println(a.Mejor_promedio());
    }
    
}
