Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Introduction To Databases And Data Warehouses

Authors: Nenad Jukic, Susan Vrbsky, Svetlozar Nestorov

1st Edition

1943153191, 978-1943153190

Students also viewed these Databases questions