class student
{private String first;
private String last;
private double avg;
public student (String f, String l, double a)
{}
public String getFirst()
{}
public String getLast()
{}
public double getAvg()
{}
public String toString()
{} // return full name
}
____________________________________________
public class school
{
private student ar[];
private final douuble MAX = 100;
int ct = 0;
public school()
{ // set up array for 100 students
}
public void addStudent(String f, String l, double d)
{ // if theres is room add to end
}
public void printStudents()
{ // print all students
}
public void printHonor()
{ // print students with avg >= 90
}
public boolean deleteStudent(String f, String l)
{ // delete student - return true if you did otherwise false
}
}