Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please help The Fraction Class is the definition for a Fraction object. Classes contain Attributes (the data) and Behaviors (the methods). The Fraction Attributes A

please help

The Fraction Class is the definition for a Fraction object. Classes contain Attributes (the data) and Behaviors (the methods). The

Fraction Attributes

A fraction is an object that contains a numerator and denominator. Your Fraction class definition must therefore contain two private attributes to represent the numerator and denominator. These attributes should be integers.

The Fraction Behaviors

Your Fraction class must contain public definitions for the following methods. The methods are the public interface to a Fraction object so you are NOT allowed to change the return type, method name, or what is sent to the method (notice that nothing is sent to any of the methods). public String toString( ) This method returns a String that looks like the fraction (ex. 34/250). This method does NOT display anything on the screen. public double getDecimal( ) This method returns the decimal equivalent of the Fraction by dividing the numerator by denominator. public void reduce( ) This method potentially changes the numerator and denominator of the object by reducing the object to lowest terms. This is the only method that can change the numerator or denominator. reduce( ) is the only mutator in the Fraction class definition. public String toMixed( ) This method returns a String which includes the whole number and a reduced fractional component. NOTE: this method DOES NOT MODIFY the numerator or denominator of the fraction it simply returns a String. For example, if the object is the Fraction 35/10, the toMixed( ) method will return the String: 3 1/2" . Remember, the numerator will remain 35, and the denominator will remain 10, after this method is called. If there is no whole number part, do not display 0. You must also account for negative values in the numerator and denominator position when the toMixed() method is called.

The Constructor Methods:

Along with the above methods, you must also be able to instantiate, or create, a new Fraction object. This is done by using the new operator and calling the constructor method. Define the following overloaded constructor: Fraction(int n, int d) This constructor initializes the numerator and denominator of the object to the values (n and d) that are sent to the constructor. Fraction( ) This constructor initializes the numerator and denominator to

1. The Test Program (

main method) Test your Fraction class. You must also create a small test program (main method) in a separate java class file to test your fraction class. Your program should do the following: create 5 different Fraction objects. Hard code the values of the numerator and denominator so that the user does not have to enter these values. Part of your evaluation on this assignment is based on the quality of the Fractions that you instantiate to test your code. Next, allow the user to choose which method to perform. You could display a menu such as the following: Choose 1. Test the toString() method 2. Test the reduce() method 3. Test the toMixed() method etc. Be sure to include a choice to quit the program. When the user makes the choice, invoke that method on all 5 fraction objects, displaying the returned value of the fraction objects on the screen. Do not display anything if the method is void (in the case of reduce( ) ). Redisplay the menu so the user may choose other options before quitting the program. Hint: For ease of coding the main method, I strongly recommend that you create an array of 5 Fraction objects. If you dont, you will not receive full credit for this assignment.

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

Joe Celkos Data And Databases Concepts In Practice

Authors: Joe Celko

1st Edition

1558604324, 978-1558604322

More Books

Students also viewed these Databases questions