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,
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
Get step-by-step solutions from verified subject matter experts
