Skip to content

Update Course.java #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Chapter_10/Problem$09/Course.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,17 @@ public void clear()
}


public void dropStudent(String studentName)
public void dropStudent(String studentName)
{
boolean reach = false;
for (int i = 0; i < numberOfStudents+1;i++)
{
for (int i = 0; i <= numberOfStudents-1;i++) {
if (!reach)
if (students[i].equals(studentName))
reach = true;

if (reach)
students[i] = students[i+1];
if (i < numberOfStudents - 1)
students[i] = students[i + 1];
}
numberOfStudents--;
}
Expand Down