Question
C++: I need help with the following program, please. I'll provide a client program and correct output Write a class to handle objects of type
C++: I need help with the following program, please. I'll provide a client program and correct output
Write a class to handle objects of type Fraction. In its simplest form, a Fraction is just two integer values: a numerator and a denominator. Fractions can be negative, may be improper (larger numerator than denominator), and can be whole numbers (denominator of 1).
Your class should support the following operations on Fraction objects:
- Construction of a Fraction from two, one, or zero integer arguments. If two arguments, they are assumed to be the numerator and denominator, just one is assumed to be a whole number, and zero arguments creates a zero Fraction. Use default parameters so that you only need a single function to implement all three of these constructors.
You should check to make sure that the denominator is not set to 0. The easiest way to do this is to use an assert statement: assert(inDenominator != 0); You can put this statement at the top of your constructor. Note that the variable in the assert() is the incoming parameter, not the data member. In order to use assert(), you must #include
For this assignment, you may assume that all Fractions are positive. We'll fix that next week.
- Printing a Fraction to a stream with an overloaded << operator. Next week we will get fancy with this, but for now just print the numerator, a forward-slash, and the denominator. No need to change improper Fractions to mixed numbers, and no need to reduce.
- All six of the relational operators (<, <=, >, >=, ==, !=) should be supported. They should be able to compare Fractions to other Fractions as well as Fractions to integers. Either Fractions or integers can appear on either side of the binary comparison operator. You should only use one function for each operator.
- The four basic arithmetic operations (+, -, *, /) should be supported. Again, they should allow Fractions to be combined with other Fractions, as well as with integers. Either Fractions or integers can appear on either side of the binary operator. Only use one function for each operator.
Note that no special handling is needed to handle the case of dividing by a Fraction that is equal to 0. If the client attempts to do this, they will get a runtime error, which is the same behavior they would expect if they tried to divide by an int or double that was equal to 0.
- The shorthand arithmetic assignment operators (+=, -=, *=, /=) should also be implemented. Fractions can appear on the left-hand side, and Fractions or integers on the right-hand side.
- The increment and decrement (++, --) operators should be supported in both prefix and postfix form for Fractions. To increment or decrement a Fraction means to add or subtract (respectively) one (1).
Additional Requirements and Hints:
The name of your class must be "Fraction". No variations will work.
- Use exactly two data members.
- You should not compare two Fractions by dividing the numerator by the denominator. This is not guaranteed to give you the correct result every time. I would simply cross multiply and compare the products.
- Don't go to a lot of trouble to find the common denominator (when adding or subtracting). Simply multiply the denominators together.
- The last two bullets bring up an interesting issue: if your denominators are really big, multiplying them together (or cross multiplying) may give you a number that is too big to store in an int variable. This is called overflow. The rule for this assignment is: don't worry about overflow in these two situations.
- My solution has 20 member functions (including friend functions). All of them are less than 4 lines long. I'm not saying yours has to be like this, but it shouldn't be way off.
- Do not use as a resource a supplementary text or website if it includes a Fraction class (or rational or ratio or whatever).
==Client Program:==
#include#include using namespace std; void BasicTest(); void RelationTest(); void BinaryMathTest(); void MathAssignTest(); string boolString(bool convertMe); int main() { BasicTest(); RelationTest(); BinaryMathTest(); MathAssignTest(); } void BasicTest() { cout << " ----- Testing basic Fraction creation & printing "; const Fraction fr[] = {Fraction(4, 8), Fraction(-15,21), Fraction(10), Fraction(12, -3), Fraction(), Fraction(28, 6), Fraction(0, 12)}; for (int i = 0; i < 7; i++){ cout << "Fraction [" << i <<"] = " << fr[i] << endl; } } string boolString(bool convertMe) { if (convertMe) { return "true"; } else { return "false"; } } void RelationTest() { cout << " ----- Testing relational operators between Fractions "; const Fraction fr[] = {Fraction(3, 6), Fraction(1,2), Fraction(-15,30), Fraction(1,10), Fraction(0,1), Fraction(0,2)}; for (int i = 0; i < 5; i++) { cout << "Comparing " << fr[i] << " to " << fr[i+1] << endl; cout << "\tIs left < right? " << boolString(fr[i] < fr[i+1]) << endl; cout << "\tIs left <= right? " << boolString(fr[i] <= fr[i+1]) << endl; cout << "\tIs left > right? " << boolString(fr[i] > fr[i+1]) << endl; cout << "\tIs left >= right? " << boolString(fr[i] >= fr[i+1]) << endl; cout << "\tDoes left == right? " << boolString(fr[i] == fr[i+1]) << endl; cout << "\tDoes left != right ? " << boolString(fr[i] != fr[i+1]) << endl; } cout << " ----- Testing relations between Fractions and integers "; Fraction f(-3,6); int num = 2; cout << "Comparing " << f << " to " << num << endl; cout << "\tIs left < right? " << boolString(f < num) << endl; cout << "\tIs left <= right? " << boolString(f <= num) << endl; cout << "\tIs left > right? " << boolString(f > num) << endl; cout << "\tIs left >= right? " << boolString(f >= num) << endl; cout << "\tDoes left == right? " << boolString(f == num) << endl; cout << "\tDoes left != right ? " << boolString(f != num) << endl; Fraction g(1,4); num = -3; cout << "Comparing " << num << " to " << g << endl; cout << "\tIs left < right? " << boolString(num < g) << endl; cout << "\tIs left <= right? " << boolString(num <= g) << endl; cout << "\tIs left > right? " << boolString(num > g) << endl; cout << "\tIs left >= right? " << boolString(num >= g) << endl; cout << "\tDoes left == right? " << boolString(num == g) << endl; cout << "\tDoes left != right ? " << boolString(num != g) << endl; } void BinaryMathTest() { cout << " ----- Testing binary arithmetic between Fractions "; const Fraction fr[] = {Fraction(1, 6), Fraction(1,3), Fraction(-2,3), Fraction(5), Fraction(-4,3)}; for (int i = 0; i < 4; i++) { cout << fr[i] << " + " << fr[i+1] << " = " << fr[i] + fr[i+1] << endl; cout << fr[i] << " - " << fr[i+1] << " = " << fr[i] - fr[i+1] << endl; cout << fr[i] << " * " << fr[i+1] << " = " << fr[i] * fr[i+1] << endl; cout << fr[i] << " / " << fr[i+1] << " = " << fr[i] / fr[i+1] << endl; } cout << " ----- Testing arithmetic between Fractions and integers "; Fraction f(-1, 2); int num = 4; cout << f << " + " << num << " = " << f + num << endl; cout << f << " - " << num << " = " << f - num << endl; cout << f << " * " << num << " = " << f * num << endl; cout << f << " / " << num << " = " << f / num << endl; Fraction g(-1, 2); num = 3; cout << num << " + " << g << " = " << num + g << endl; cout << num << " - " << g << " = " << num - g << endl; cout << num << " * " << g << " = " << num * g << endl; cout << num << " / " << g << " = " << num / g << endl; } void MathAssignTest() { cout << " ----- Testing shorthand arithmetic assignment on Fractions "; Fraction fr[] = {Fraction(1, 6), Fraction(4), Fraction(-1,2), Fraction(5)}; for (int i = 0; i < 3; i++) { cout << fr[i] << " += " << fr[i+1] << " = "; cout << (fr[i] += fr[i+1]) << endl; cout << fr[i] << " -= " << fr[i+1] << " = "; cout << (fr[i] -= fr[i+1]) << endl; cout << fr[i] << " *= " << fr[i+1] << " = "; cout << (fr[i] *= fr[i+1]) << endl; cout << fr[i] << " /= " << fr[i+1] << " = "; cout << (fr[i] /= fr[i+1]) << endl; } cout << " ----- Testing shorthand arithmetic assignment using integers "; Fraction f(-1, 3); int num = 3; cout << f << " += " << num << " = "; cout << (f += num) << endl; cout << f << " -= " << num << " = "; cout << (f -= num) << endl; cout << f << " *= " << num << " = "; cout << (f *= num) << endl; cout << f << " /= " << num << " = "; cout << (f /= num) << endl; cout << " ----- Testing increment/decrement prefix and postfix "; Fraction g(-1, 3); cout << "Now g = " << g << endl; cout << "g++ = " << g++ << endl; cout << "Now g = " << g << endl; cout << "++g = " << ++g << endl; cout << "Now g = " << g << endl; cout << "g-- = " << g-- << endl; cout << "Now g = " << g << endl; cout << "--g = " << --g << endl; cout << "Now g = " << g << endl; }
==Output should be:==
----- Testing basic Fraction creation & printing Fraction [0] = 4/8 Fraction [1] = -15/21 Fraction [2] = 10/1 Fraction [3] = 12/-3 Fraction [4] = 0/1 Fraction [5] = 28/6 Fraction [6] = 0/12 ----- Testing relational operators between Fractions Comparing 3/6 to 1/2 Is left < right? false Is left <= right? true Is left > right? false Is left >= right? true Does left == right? true Does left != right ? false Comparing 1/2 to -15/30 Is left < right? false Is left <= right? false Is left > right? true Is left >= right? true Does left == right? false Does left != right ? true Comparing -15/30 to 1/10 Is left < right? true Is left <= right? true Is left > right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing 1/10 to 0/1 Is left < right? false Is left <= right? false Is left > right? true Is left >= right? true Does left == right? false Does left != right ? true Comparing 0/1 to 0/2 Is left < right? false Is left <= right? true Is left > right? false Is left >= right? true Does left == right? true Does left != right ? false ----- Testing relations between Fractions and integers Comparing -3/6 to 2 Is left < right? true Is left <= right? true Is left > right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing -3 to 1/4 Is left < right? true Is left <= right? true Is left > right? false Is left >= right? false Does left == right? false Does left != right ? true ----- Testing binary arithmetic between Fractions 1/6 + 1/3 = 9/18 1/6 - 1/3 = -3/18 1/6 * 1/3 = 1/18 1/6 / 1/3 = 3/6 1/3 + -2/3 = -3/9 1/3 - -2/3 = 9/9 1/3 * -2/3 = -2/9 1/3 / -2/3 = 3/-6 -2/3 + 5/1 = 13/3 -2/3 - 5/1 = -17/3 -2/3 * 5/1 = -10/3 -2/3 / 5/1 = -2/15 5/1 + -4/3 = 11/3 5/1 - -4/3 = 19/3 5/1 * -4/3 = -20/3 5/1 / -4/3 = 15/-4 ----- Testing arithmetic between Fractions and integers -1/2 + 4 = 7/2 -1/2 - 4 = -9/2 -1/2 * 4 = -4/2 -1/2 / 4 = -1/8 3 + -1/2 = 5/2 3 - -1/2 = 7/2 3 * -1/2 = -3/2 3 / -1/2 = 6/-1 ----- Testing shorthand arithmetic assignment on Fractions 1/6 += 4/1 = 25/6 25/6 -= 4/1 = 1/6 1/6 *= 4/1 = 4/6 4/6 /= 4/1 = 4/24 4/1 += -1/2 = 7/2 7/2 -= -1/2 = 16/4 16/4 *= -1/2 = -16/8 -16/8 /= -1/2 = -32/-8 -1/2 += 5/1 = 9/2 9/2 -= 5/1 = -1/2 -1/2 *= 5/1 = -5/2 -5/2 /= 5/1 = -5/10 ----- Testing shorthand arithmetic assignment using integers -1/3 += 3 = 8/3 8/3 -= 3 = -1/3 -1/3 *= 3 = -3/3 -3/3 /= 3 = -3/9 ----- Testing increment/decrement prefix and postfix Now g = -1/3 g++ = -1/3 Now g = 2/3 ++g = 5/3 Now g = 5/3 g-- = 5/3 Now g = 2/3 --g = -1/3 Now g = -1/3
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