Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Write a program that lets the user perform arithmetic operations on fractions. Fractions are of the form a/b, where a and b are integers and b is not...

Write a program that lets the user perform arithmetic operations on fractions. Fractions are of the form a/b, where a and b are integers and b is not equal to 0. Your program must be menu driven, allowing the user to select the operation (+, -, *, /) and input the numerator and denominator of each fraction. Your program must consist of at least the following functions:a. Function menu: This function informs the user about the program's purpose, explains how to enter data, and allows the user to select the operation.b. Function addFractions: This function adds two fractions together (or you can overload the +operator()). c. Function subtractFractions: This function subtracts one fraction from another (or you can overload the -operator()). d. Function multiplyFractions: This function multiplies two fractions together (or you can overload the *operator()). e. Function divideFractions: This function divides one fraction into another (or you can overload the /operator()). Some sample outputs are:3 / 4 + 2 / 5 = 23 / 202 / 3 * 3 / 5 = 6 / 15Your answers need not be in the lowest terms.

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question