My teacher wants me to create a Course list of Instructor and Textbook, and I don't know how to put all the course names into a file.
Here is my code:
public static void main(String[] args) {
Instructor instruct = new Instructor();
TextBook text = new TextBook();
String course = instruct.instructor() + ", " + text.textbook();
System.out.println(course);
int i = 0;
ArrayList<String> courseList = new ArrayList<String>(i);
while (true) {
courseList.add(course);
}
}