Question: Write a C + + * * ( Fraction calculator ) * * | Write a program that lets the user perform arithmetic operations on
Write a C
Fraction calculator Write a program that lets the user perform arithmetic operations on fractions. Fractions are of the form ab in which a and b are integers and b Your program must be menu driven, allowing the user to select the operation or and input the numerator and denominator of each fraction. Furthermore, your program must consist of at least the following functions:
Function menu: This function informs the user about the programs purpose, explains how to enter data, and allows the user to select the operation.
Function addFractions: This function takes as input four integers representing the numerators and denominators of two fractions, adds the fractions, and returns the numerator and denominator of the result. Notice that this function has a total of six parameters.
Function subtractFractions: This function takes as input four integers representing the numerators and denominators of two fractions, subtracts the fractions, and returns the numerator and denominator of the result. Notice that this function has a total of six parameters.
Function multiplyFractions: This function takes as input four integers representing the numerators and denominators of two fractions, multiplies the fractions, and returns the numerators and denominators of the result. Notice that this function has a total of six parameters.
Function divideFractions: This function takes as input four integers representing the numerators and denominators of two fractions, divides the fractions, and returns the numerator and denominator of the result. Notice that this function has a total of six parameters. Some sample outputs are:
Your answer need not be in the lowest terms.
Task #: Program Outputs Correctly and contains required functions
Test Feedback:
Status: PASSED!
Check:
Test: Check for function menu
Reason: void menu was found in the program.None
Timestamp: ::
Status: PASSED!
Check:
Test: Check for function addFractions
Reason: void addFractions was found in the program.None
Timestamp: ::
Status: PASSED!
Check:
Test: Check for function subtractFractions
Reason: void subtractFractions was found in the program.None
Timestamp: ::
Status: PASSED!
Check:
Test: Check for function multiplyFractions
Reason: void.multiplyFractions was found in the program.None
Timestamp: ::
Status: PASSED!
Check:
Test: Check for function divideFractions
Reason: void divideFractions was found in the program.None
Timestamp: ::
Status: FAILED!
Check:
Test: Successful Output
Reason: Unable to find in the program's output.
Welcome to the Fraction Calculator!
This program allows you to perform operations on fractions
Enter fractions as two integers separated by a space numerator denominator
The result will not be simplified.
Enter your choice of operation : Enter numerator and denominator of the first fraction eg for : Enter numerator and denominator of the second fraction eg for : Invalid operation.
Error : AssertionError Unable to find in the program's output.
Timestamp: ::
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
