Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Computer Engineering Expert

Create a four-function fraction calculator. Here are the formulas for the four arithmetic operations applied to fractions:

Math: calculator input = internal operation
Addition: a/b + c/d = (a*d + b*c) / (b*d)
Subtraction: a/b - c/d = (a*d - b*c) / (b*d)
Multiplication: a/b * c/d = (a*c) / (b*d)
Division: a/b / c/d = (a*d) / (b*c)

The left expression is the user input and the right expression actual overloaded math operation. The fractional number e.g. a/b, is represented by having the slash "/" sign in between the numerator and denominator number with NO space in between. The math operation is using the infix expression, e.g. x * y expression is written with the operator * in between the operand x and y.

The user should type the first fraction, an operator, and a second fraction. The program should then display the result and ask whether the user wants to continue.

Create the frac class with the following interface definition:

private:
long num; //numerator
long den; //denomenator
public:
frac() //constructor (no args)
{ num=0; den=1; }
frac(long d) //constructor (one arg)
{ num=d; den=1; }
frac(long n, long d) //constructor (two args)
{ num = n; den = d; }
frac operator = (frac&); // assignment operator
frac operator + (frac&); //arithmetic operators
frac operator - (frac&);
frac operator * (frac&);
frac operator / (frac&);
bool operator == (frac&); //logical operators
bool operator != (frac&);
void outputfrac(); //user interface functions
void inputfrac();
frac lowterms(frac&);

Also, make sure the frac class has the necessary mutators and accesors to support the application!
Implementations

create the frac.cpp and complete the defition of all method functions,
use the sample code from the frac_oo.cpp ,
use overloaded operators for addition, subtraction, multiplication, and division. Also overload the == and != comparison operators, and
use them to exit from the loop if the user enters 0/1, 0/1 for the values of the two input frac class numbers.


The finished application is required to apply the lowterms() function so that it returns the value of its argument reduced to lowest terms. This makes it more useful in the arithmetic functions, where it can be applied just before the answer is returned.

___________________________________________________
Starter Kit is provided to jump start your development.

frac_pp.cpp: an example procedural program with identical functionality.

frac_oo.cpp: an example code segment for main() application to interact with your class frac.

The user interface provided in the frac_oo.cpp is expecting the user to enter one infix +-*/ operation expression, i.e. x * y, or two operands with the operator in between. A white space is required between operand and operator.

User Interface Examples:

Enter fraction, operator, fraction
form 3/4 + 3/8 (or 0/1 + 0/1 to exit): 3/4 + 3/8
You have entered: 3/4 + 3/8
9/8

Enter fraction, operator, fraction
form 3/4 + 3/8 (or 0/1 + 0/1 to exit): 3/4 - 3/8
You have entered: 3/4 - 3/8
3/8

Enter fraction, operator, fraction
form 3/4 + 3/8 (or 0/1 + 0/1 to exit): 7/10 * 3/5
You have entered: 7/10 * 3/5
21/50

Enter fraction, operator, fraction
form 3/4 + 3/8 (or 0/1 + 0/1 to exit): 7/10 / 3/5
You have entered: 7/10 / 3/5
1/2
Submit For multiple files project, please zip all files in your assignment folder in a .zip file and submit this frac.zip file to the dropbox here.

zip frac.cpp and frac.h in one frac.zip file and submit to dropbox.

Universal Requirement all assignments for this course:
All submitted files shall contain the following information on top of the files (header of the C++, h file):


frac_pp.cpp is

#include
#include // labs()
using namespace std;

struct frac{
int num;
int den;
};

frac inputfrac() { //input
char dummychar;
frac f;
while(1) {
cin >> f.num; //numerator
cin >> dummychar; //'/' character
cin >> f.den; //denominator
if(f.den != 0) break; //no problem, so exit loop
cout << "Denominator cannot be zero. Try again: ";
}
return f;
}

frac lowterms(frac a) { //arg reduced to lowest terms
frac t; //temporary fraction
long tlong, gcd;

t.num = labs(a.num); //use non-negative copies
t.den = labs(a.den);
if( t.num!=0 && t.den==0 ) //check for n/0
{ cout << "Illegal fraction: division by 0"; exit(1); }
else if( t.num==0 ) //check for 0/n
{ t.num=0; t.den = 1; return(t); }

//this 'while' loop finds the gcd of t.num and t.den
while(t.num != 0) {
if(t.num < t.den) //ensure numerator larger
{ tlong=t.num; t.num=t.den; t.den=tlong; }
t.num = t.num - t.den; //subtract them
}
gcd = t.den;
t.num = a.num / gcd; //divide both num and den by gcd
t.den = a.den / gcd; //to reduce frac to lowest terms
return t;
}

int main()
{
// frac f1, f2, fans;
frac f1, f2, fans;
char op;

do {
cout << "nEnter fraction, operator, fraction";
cout << "nform 3/4 + 3/8 (or 0/1 + 0/1 to exit): ";
f1 = inputfrac();
cin >> op;
f2 = inputfrac();

cout << "You have entered: " << f1.num << "/" << f1.den
<< " " << op << " " << f2.num << "/" << f2.den << endl;
switch(op) {
case '+':
fans.num = f1.num * f2.den + f2.num * f1.den;
fans.den = f1.den * f2.den;
break;
case '-':
fans.num = f1.num * f2.den - f2.num * f1.den;
fans.den = f1.den * f2.den;
break;
case '*':
fans.num = f1.num * f2.num;
fans.den = f1.den * f2.den;
break;
case '/':
fans.num = f1.num * f2.den;
fans.den = f1.den * f1.num;
break;
default:
cout << "No such operator";
} //end switch

fans = lowterms(fans);

cout << fans.num << "/" << fans.den << endl;
} while( f1.num != 0 || f2.num != 0 );
cout << endl;
return 0;
}


frac_oo.cpp , is

int main()
{
frac f1, f2, fans;
char op;

do {
cout << "nEnter fraction, operator, fraction";
cout << "nform 3/4 + 3/8 (or 0/1 + 0/1 to exit): ";
f1.inputfrac();
cin >> op;
f2.inputfrac();
switch(op) {
case '+':
fans = f1 + f2;
fans.outputfrac();
break;
case '-':
fans = f1 - f2;
fans.outputfrac();
break;
case '*':
fans = f1 * f2;
fans.outputfrac();
break;
case '/':
fans = f1 / f2;
fans.outputfrac();
break;
default:
cout << "No such operator";
} //end switch
} while( f1 != frac(0/1) || f2 != frac(0,1) );
cout << endl;
return 0;
}


frac__oo__starter.cpp is

// File: frac_oo.cpp
// Name:
// DVC ID: 1234567
// IDE: pocketcpp, or CodeBlock
// Please finish the missing method definitions for the frac class

#include
#include // labs()

using namespace std;

class frac; // Forward Declaration

// Function Prototypes for Overloaded Stream Operators
ostream &operator << (ostream &, const frac &);
istream &operator >> (istream &, frac &);

class frac {
//private:
long num;
long den;

public:
// constructors
frac() {
num = 0;
den = 1;
}

frac(long n, long d) {
num = n;
den = d;
}

frac(const frac &f) {
num = f.num;
den = f.den;
}

// accessors and mutators
long getNum() {return num;}
long getDen() {return den;}
void setNum(long n) {num = n;}
void setDen(long d) {den = d;}

// overload operator
frac operator=(const frac &f) {
num = f.num;
den = f.den;
}

// math operators
frac operator+(frac &f);
frac operator-(frac &f);
frac operator*(frac &f);
frac operator/(frac &f);

// logic operators
bool operator==(frac &f);
bool operator!=(frac f);


// auxiliary methods
frac inputfrac();
void outputfrac() {std::cout << ' ' << num << '/' << den << ' ';}
frac lowterms(frac &a);

};


frac frac::inputfrac() { //input
char dummychar;
while(1) {
cin >> num; //numerator
cin >> dummychar; //'/' character
cin >> den; //denominator
if(den != 0) break; //no problem, so exit loop
cout << "Denominator cannot be zero. Try again: ";
}
}

frac frac::lowterms(frac &a) { //arg reduced to lowest terms
frac t; //temporary fraction
long tlong, gcd;

t.num = labs(a.num); //use non-negative copies
t.den = labs(a.den);
if( t.num!=0 && t.den==0 ) //check for n/0
{ cout << "Illegal fraction: division by 0"; exit(1); }
else if( t.num==0 ) //check for 0/n
{ t.num=0; t.den = 1; return(t); }

//this 'while' loop finds the gcd of t.num and t.den
while(t.num != 0) {
if(t.num < t.den) //ensure numerator larger
{ tlong=t.num; t.num=t.den; t.den=tlong; }
t.num = t.num - t.den; //subtract them
}
gcd = t.den;
t.num = a.num / gcd; //divide both num and den by gcd
t.den = a.den / gcd; //to reduce frac to lowest terms
return t;
}

int main()
{
frac f1, f2, fans;
char op;

do {
cout << "nEnter fraction, operator, fraction";
cout << "nform 3/4 + 3/8 (or 0/1 + 0/1 to exit): ";
f1.inputfrac();
cin >> op;
f2.inputfrac();
switch(op) {
case '+':
fans = f1 + f2;
fans.outputfrac();
break;
case '-':
fans = f1 - f2;
fans.outputfrac();
break;
case '*':
fans = f1 * f2;
fans.outputfrac();
break;
case '/':
fans = f1 / f2;
fans.outputfrac();
break;

default:
cout << "No such operator";
} //end switch
} while( f1 != frac(0,1) || f2 != frac(0,1) );
cout << endl;
return 0;
}

 

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M9681638

Have any Question?


Related Questions in Computer Engineering

In a standard s - t maximum flow problem we assume edges

In a standard s - t maximum flow problem, we assume edges have capacities, and there is no limit on how much flow is allowed to flow through a node. In this problem, we consider the variant of the maximum flow and minimu ...

Here are specific instructions about the two programs that

Here are specific instructions about the two programs that you will write: Copying the Data Block using Arrays The first program that you will write will use arrays for the data transfer. You may directly use SRCBLK and ...

Technology certainly does play a large role in our lives

Technology certainly does play a large role in our lives and this has happened in a very short period of time. It has impacted the way we activities professionally, personally, and academically. For example, online educa ...

Tests can determine with some degree of accuracy whether a

Tests can determine, with some degree of accuracy, whether a subject indeed has the disease for which s/he is being tested. For instance, a new screening procedure for heart disease was tested on 100 patients with heart ...

Question when you supervisor arrives she has a document

Question : When you supervisor arrives, she has a document with her for you to sign, indicating the condition of the computer, how you kept it secure while you waited for her, and the transfer of responsibility for the c ...

Show a schedule with two transactions that share a single

Show a schedule with two transactions that share a single data item (A in block BA) and that is not serializable, but that is equivalent to a serial schedule of the two transactions for certain initial values of A. Indic ...

Why hasnt health care in australia been entirely privatised

Why hasn't health care in Australia been entirely privatised, according to Boxall and Gillespie? Should health care (in Australia) be wholly privatised? Do you think it will be in the future?

Suppose our task is to distinguish between humans and

Suppose our task is to distinguish between humans and non-human objects in an image, which classifier would you choose and why? Decision trees, perceptrons or neural nets.

Consider the following reactionccl4g 4 cl2g rarr ch4g 4

Consider the following reaction: CCl4(g) + 4 Cl2(g) → CH4(g) + 4 HCl(g) What mass of CCl4 is formed by the reaction of 2.00 g of methane with an excess of chlorine?

A real estate office manages 50 apartment units when the

A real estate office manages 50 apartment units. When the rent is $550 per month, all units are occupied. However, for each $55 increase in rent per month, one unit becomes vacant. How many units should be rented to maxi ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As