Question: C++, Iostream, using namespace std, NO POINTERS Create a class to handle fractions, using multiple .cpp files and appropriate .h file. Both the numerator and
C++, Iostream, using namespace std, NO POINTERS

Create a class to handle fractions, using multiple .cpp files and appropriate .h file. Both the numerator and denominator are integers, positive or negative. Your class must have a default constructor that uses a constructor list to initialize the values. The fraction must default to 1/1 Overload operators ,+, - so they work with your Fraction class. You will most likely need to create a private method to convert fractions to a common denominator so that, for example, the class can work with 1/2 and -4/-8, and another private method to reduce the fraction to lowest form (4/8 would print as 1/2). All output should show the fraction in lowest form I need a method to display the 4 and denominator 7 then it should display 4/7. Bonus points (1ea) for overloading *, /
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
