Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a class Rational which represents a numerical value by two double values Numerator and Denominator. Include the following public member functions: - Constructor with
Write a class Rational which represents a numerical value by two double values Numerator and Denominator. Include the following public member functions: - Constructor with no arguments (default). - Constructor with two parameters. - Reduce() function to reduce the rational number by eliminating the highest common factor between the numerator and the denominator. - Overload the addition, subtraction, multiplication and division operators for this class 0+ (Addition) - (Subtraction x (Multiplication) % (Division) - Overload operator to enable input through in. - Overload (Greater than) 0= (Greater than or equal to) - = (Not equal) - = (Equal to) - Overload pre-increment, pre-decrement, post-increment and post-decrement operator if denominator in a rational number is " 1
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started