Question: please i need this asap C++ Data Structure n Question 9 4 pts Refer to this header file for the following question: // Fraction class

please i need this asap

C++ Data Structure

please i need this asap C++ Data Structure n Question 9 4

n Question 9 4 pts Refer to this header file for the following question: // Fraction class // This class represents a fraction a / b class Fraction { public: // Constructors Fraction(); // sets numerator to 1 and denominator to 1 Fraction(int num, int denom); // Setters void setNumerator(int num); void set Denominator(int denom); // getters int getNumerator const {return num; } int getDenominator(const {return denom; } double getDecimal({return static_cast num / denom; } private: int num, denom; }; Write code for the following constructor. Assume this is the code that goes in the implementation file: Fraction(int num, int denom); Make sure to add code that ensures the denominator is not zero and assume all necessary libraries have been added. Edit View Insert Format Tools Table 12pt v Paragraph 10 Tev

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!