Written in : C++ 98 The purpose of this project was to apply Software Engineering conventions learned throughout the course. The program generates 3 different reports based on the given data:
- A report listing the percentage breakdown of farms for each region and for each animal in 2016.
- A report listing the percent change of each animal in Canada from 2011 - 2016
- A report listing the sub region for each region that has the most Horses/Ponies
- Full : Read Me
- Further Documentation found in source files
- Navigate to the folder of the program
cd [program file path] e.g. cd comp2404final
- There are two choices for compilation
- Choice A:
make final
./final
(To run with valgrind: )
sh valgrind ./final
- Choice B:
make final2