class assignmnet for cse1326
This first group class assignment will be an exercise in C++ and object oriented programming.
The result will be a command line (linux) program, that reads the same data files as are used by the 'mavgrades' website.
Students:
- Select what you want to work on. Possible projects are listed in the activities part of github.
- Assign them to yourself
- Do the work.
- Be prepared to discuss the work you have done with the class.
- Repeat until the project is done.
Requirements: (note these requirements will be refined as we go along)
- Command line interface.
- The command "course " display all of the courses that match for the data available. It will provide pass percentage, and average grades for each instructor, grouped by instructor and year.
- More...
Design:
graph TD;
json file-->dataImporter;
dataImporter -->Array of grades;
Array of grades -->commandProcessor;