Question: C++ Book Chapter 6, programming project 5 Define a class for a type called Fraction. This class is used to represent a ratio of two
Book Chapter 6, programming project 5 Define a class for a type called Fraction. This class is used to represent a ratio of two integers. Include mutator functions and allow the user to set the numerator and the denominator. Also include a member function that returns the value of the numerator divided by the denominator as a double. Include an additional member function that outputs the value of the fraction reduced to lowest terms. For example, instead of outputting 20/60 the function should output 1/3. This will require finding the greatst common divisor for the numerator and the denominator, and then dividing both by the number. Embed your class in a test program Additional information: Use only one file for the program. Clearly separate the declaration and implementation sections
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
