Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I am in intro to c++, so don\'t make this program too complicated, we only read

ID: 3627540 • Letter: I

Question

I am in intro to c++, so don't make this program too complicated, we only read up to chapter 6 in absolute c++..Thanks!:

Define a class for a type called Fraction. This class is used to represent a ratio of two integers. Include mutator functions that 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 greatest common divisor for the numerator and denominator, and then dividing both by that number. Embed your class in a test program.

my professor wants us to include: output, addition, division, and constructors, and the test cases are 3/4 and 7/12. Thanks!

Explanation / Answer

#include using namespace std; class Fraction { public: Fraction(); Fraction(int, int); void setNumer(int); void setDenom(int); void print() const; void reduce(); double toDec(); Fraction multiply(Fraction f1); Fraction add(Fraction f1); private: int numer; int denom; }; Fraction::Fraction() //constructors { numer = 1; denom = 1; } Fraction::Fraction(int n, int d) { numer = n; denom = d; } void Fraction::setNumer(int n) //to set numer or denoms { numer = n; } void Fraction::setDenom(int d) { denom = d; } void Fraction::print() const //prints fraction and sets to 1 if numer = denom { if(numer == denom) cout