Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in java please 4. Create class Rationa1Numbers Write and fully test a class that represents rational numbers. A rational number can be represented as the

image text in transcribed

image text in transcribed

in java please

4. Create class Rationa1Numbers Write and fully test a class that represents rational numbers. A rational number can be represented as the ratio of two integer values, a and b, where b is not zero. The class has attributes for the numerator and denominator of this ratio. The ratio should always be stored in its simplest form. That is, any common factor of a and b should be removed. For example, the rational number 40/12 should be store as 10/3. The class has the following constructors and methods: . A default constructor that sets the rational number to 0/1 A constructor that has parameters for the numerator and denominator and converts the resulting ratio to simplified form .simplify - a private method that converts the rational number to simplified form getGCD a private static method that returns the largest common factor of the two positive integers x and y, that is, their greatest common divisor. For example, the greatest common divisor of 40 and 12 is 4 getValue - returns the rational number as a double value toString-returns the rational number as a string in the form a/b

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Heikki Topi, Jeffrey A Hoffer, Ramesh Venkataraman

13th Edition

0134773659, 978-0134773650

More Books

Students also viewed these Databases questions