
/**
 * Write a description of class exercises here.
 *
 * @author (your name)
 * @version (a version number or a date)
 */
public class exercises
{
    Student andy;//This is Mr Chuang. His L2 credits will be releaved below
    
    
    
    /**
     * Make a new student object with the following credits A=64, M=45, E=26
     */
    public void andyCredits(){
        andy = new Student("Andy");//This is Mr Chuang as  Year 12
        //YOUR CODE HERE

    }
    
    
    /**
     * Create the student Andy and print out if he has NCEA level 2
     * Also print out if he has an endorsement
     * Use the functions in the object
     */
    public void studentCredits(){
        andy = new Student("Andy");
        //YOUR CODE HERE

    }
    
    /**
     * Create 2 student objects. Set them up so that one of them is 14 credits away from level 2. Set the other one up so he has an Excellence edorsement
     */
    public void otherStudents(){
        //YOUR CODE HERE

    }
    
    
    /**
     * Create yourself as a student object with your credits. Have it print out how much more you need.
     */
    public void yourself(){
        //YOUR CODE HERE

    }
}
