rational overload
Implement a rational class (fractions) that overloads numerous operators. Make the testfile that are in the pictures pass all tests. Use the provided makefile. Refer to cpprefrence for guidance, particularly their Fractions example. Note, you don’t need a gcd function like they have; our fractions do not need to be “reduced” (e.g., 5/10 doesn’t convert […]
