#include "Person.h" #include "courseInfo.h" #include "Student.h" #include "Registration.h" #include "Avl.h" #include #include #include #include using namespace std; int main() { //create Student object and declare variables to be used in creating student Student s1; //bool empty; string file; fstream inFile; Registration registrationSystem; string classID, year, semester, answer = "Y"; registrationSystem.loadInfoFromFile(); cout << "Student who have taken CSCI333 in the Fall of 2006" << endl; registrationSystem.printScoreList("CSCI333", "2006", "Fall"); /* while (answer == "Y" || answer == "y") { cout << "Please enter classID: "; cin >> classID; cout << "\nPlease enter year: "; cin >> year; cout << "\nPlease enter semster: "; cin >> semester; cout << "Students who have taken " << classID << " in the " << semester << " of " << year << endl; registrationSystem.printScoreList(classID, year, semester); cout << "Would you like to search for another class? (Y/N):"; cin >> answer; } */ cout << "*** END OF PROGRAM OUTPUT ***" << endl; return 0; }//end main