|
this is the code i used
/**
* Add applicants to the system.
*/
public void addApplicant (Person newPerson)
{
if(persons.size() == capacity) {
System.out.println("All advisors are busy, please come back later." );
}
else {
persons.add(newPerson);
}
}
This is the code i used and it doesnt work can u help
|