package uiquiz;

public class UIQuiz {

    public static void main(String[] args) {

        SchoolManager sm = new SchoolManager();

        System.out.println(sm.displaySchool());

        System.out.println("The area of woodhill: " + sm.fetchArea("Woodhill"));

        System.out.println("The highest IQ at Pecanwood: " + sm.getMaxIQ("Pecanwood"));

        System.out.println("\nThe number of students per school whose IQ is higher than their group average's IQ:");

        System.out.println(sm.schoolsAboveAverage());

    }

}
