first commit
This commit is contained in:
17
Lecture Notes/src/Week2/InClassExercise1/Section.java
Normal file
17
Lecture Notes/src/Week2/InClassExercise1/Section.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package Week2.InClassExercise1;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Section {
|
||||
|
||||
private ArrayList<Person> students = new ArrayList<>();
|
||||
private String classroom;
|
||||
|
||||
public int numStudents() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public void display() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user