Question: Please solve in java and explain your steps (make sure the program runs and explain how to run the program) 1.2.16 Rational numbers. Implement an
Please solve in java and explain your steps (make sure the program runs and explain how to run the program)


1.2.16 Rational numbers. Implement an immutable data type Rationa 1 for rational numbers that supports addition, subtraction, multiplication, and division. You do not have to worry about testing for overflow (see EXERCISE 1.2.17), but use as instance variables two long values that represent the numerator and denominator to limit the possibility of overflow. Use Euclid's algorithm (see page 4) to ensure that the numerator and denominator never have any common factors. Include a test client that exercises all of your methods. Euclid's Algorithm: public static int gcd( int p, int q ) \{ if (q==0) return p; int r=p%q; return gcd(q,r); \}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
