Search:

Type: Posts; User: samfin

Search: Search took 0.07 seconds.

  1. Re: how to implement method to add new Student and display it

    The add method was ok as it was except maybe you'd want to put it like this

    public void addStudent()
    {
    students[length] = new Student();
    length++;
    }


    It was your...
  2. Re: how to implement method to add new Student and display it

    With this line:
    System.out.println("Student Name:" + student.getFirstName() +" "+ student.getLastName() + " Enrollment on:" + student.getEnrollmentDate());
    Your calling the Student methods on...
  3. Re: how to implement method to add new Student and display it

    What is the problem you're having with the code, the methods and constructor you mention are in there. Are they not working as expected?
Results 1 to 3 of 3