Question: Do in Java 3.2.7 Implement a data type Rational for rational numbers that supports addi- tion, subtraction, multiplication, and division. public class Rational Rational(int numerator,

Do in Java Do in Java 3.2.7 Implement a data type Rational for rational numbers

3.2.7 Implement a data type Rational for rational numbers that supports addi- tion, subtraction, multiplication, and division. public class Rational Rational(int numerator, int denominator) Rational plus (Rational b) sum of this number and b Rational minus (Rational b) difference of this number and b Rational times (Rational b) product of this number and b Rational over (Rational b) quotient of this number and b String toString() string representation Use Euclid.gcd (PROGRAM 2.3.1) to ensure that the numerator and denomina- tor never have any common factors. Include a test client that exercises all of your methods. Do not worry about testing for overflow (see Exercise 3.3.24)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!