2023 Define a class for rational numbers A rational number is a | Assignment Collections

Computer Science 2023 Rational NUMBER

2023 Define a class for rational numbers A rational number is a | Assignment Collections

Define a class for rational numbers. A rational number is a number that can be represented as the quotient of two integers. For example, 1/2, 3/4, 64/2, and so forth are all rational numbers. (By ½, etc we mean the everyday meaning of the fraction, not the integer division this expression would produce in a C++ program).

Represent rational numbers as two values of type int, one for the numerator and one for the denominator. Call the class rationalNum

 

Include a constructor with two arguments that can be used to set the member variables of an object to any legitimate value. Also include a constructor that has only a single parameter of type int; call this single parameter whole_number and define the constructor so that the object will be initialized to the rational number whole_number/1. Also include a default constructor that initializes an object to 0    (that is, to 0/1).

 

Overload the input and output operators >> and <<. Numbers are to be input and output in the form 1/2, 15/32, 300/401, and so forth.  Note that the numerator, the denominator, or both may contain a minus sign, so -1/2, 15/32, -300/-400 are all possible input. The input operator, >>, reads the string 15/32 as 

 

Overload all of the following operators so that they correctly apply to the type rationalNum: ==, <, >, +, -, *, and /. 

 

Write a test program to test your class.

 

[Hints: Two rational numbers a/b and c/d are equal if a*d equals c*b. If b and d are positive numbers, a/b is less than c/d provided a*d is less than c*b. 

 

  1. (a/b + c/d) is given by:

Numerator =a*d + c*b

Denominator = b*d

 

  1. (a/b – c/d) is given by 

Numerator = a*d – c*b

Denominator = b*d

 

 

 

  1. (a/b * c/d) is given by

Numerator = a*c

Denominator = b*d

 

  1. (a/b divided by c/d) is given by

Numerator = a*d

Denominator = b*c

    ]

 

The numerators and denominators of rational numbers tend to become large, so it is better to normalize intermediate results. This is achieved by calling a method, normalize(), on the number as shown:

cout << “The sum of the two numbers is: “ << result.normalize() << endl;

 

Here’s the function that you call to normalize the number. Make it a member function of the rationalNum class. It is called in the driver program to:

 

  • Display each input number read
  • Display the results of the arithmetic operations.

 

rationalNumber rationalNumber::normalize()

{

  rationalNum temp;

  int x,y,z;

 

  x=numerator;

  y=denominator;

  z=(x*x < y*y)? (z=x):(z=y);

  for (int i=2; i*i<=z*z; i++){

    while ((x%i)==0 && (y%i)==0 )

    {

      x=x/i;

      y=y/i;

      z=z/i;

    }

  }

  if (y<0){

    temp.numerator=-x;

    temp.denominator=-y;

  }

  else {

    temp.numerator=x;

    temp.denominator=y;

  }

  return temp;

}

 

Here’s the output of test run of the driver program using rationalNum objects.

 

E:neu>rationalMain

 

Enter the first value:  2/3

 

Enter the second value: 3/5

 

value1 is                       2/3

Normalized value1:              2/3

 

value 2 is:                     3/5

Normalized value2:                      3/5

 

addition                        19/15

Normalized sum:         19/15

 

subtraction                     1/15

Normalized difference:  1/15

 

multiplication                   6/15

Normalized product:     2/5

 

division                        10/9

Normalized quotient:    10/9

 

is 2/3 < 3/5 ?  no

is 2/3 > 3/5 ?  yes

is 2/3 =  3/5 ?         no

 

Press any key to continue . . .

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

#write essay #research paper #blog writing #article writing #academic writer #reflective paper #essay pro #types of essays #write my essay #reflective essay #paper writer #essay writing service #essay writer free #essay helper #write my paper #assignment writer #write my essay for me #write an essay for me #uk essay #thesis writer #dissertation writing services #writing a research paper #academic essay #dissertation help #easy essay #do my essay #paper writing service #buy essay #essay writing help #essay service #dissertation writing #online essay writer #write my paper for me #types of essay writing #essay writing website #write my essay for free #reflective report #type my essay #thesis writing services #write paper for me #research paper writing service #essay paper #professional essay writers #write my essay online #essay help online #write my research paper #dissertation writing help #websites that write papers for you for free #write my essay for me cheap #pay someone to write my paper #pay someone to write my research paper #Essaywriting #Academicwriting #Assignmenthelp #Nursingassignment #Nursinghomework #Psychologyassignment #Physicsassignment #Philosophyassignment #Religionassignment #History #Writing #writingtips #Students #universityassignment #onlinewriting #savvyessaywriters #onlineprowriters #assignmentcollection #excelsiorwriters #writinghub #study #exclusivewritings #myassignmentgeek #expertwriters #art #transcription #grammer #college #highschool #StudentsHelpingStudents #studentshirt #StudentShoe #StudentShoes #studentshoponline #studentshopping #studentshouse #StudentShoutout #studentshowcase2017 #StudentsHub #studentsieuczy #StudentsIn #studentsinberlin #studentsinbusiness #StudentsInDubai #studentsininternational