Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Java You will get input from a file called H8.in. MUST INCLUDE COMMENTS Input consists of integers representing the numerator and denominator of fractions.

In Java

You will get input from a file called H8.in.

MUST INCLUDE COMMENTS

Input consists of integers representing the numerator and denominator of fractions. NOTE that some numerators and some denominators will be negative.

As you input 2 integers create a Fraction object. Output the Fraction. (I want to see that your gcd method is working even for negative numbers). I DO NOT want to see any negative denominators. If both numerator and denominator are negative make both positive, if the denominator is negative but the numerator is positive then flip those signs so that the numerator is negative and the denominator positive. This is so that you do not output 3/-4, but rather -3/4.

DO NOT store these Fractions in any data structure (such as an array or ArrayList). Just keep track of the biggest and the smallest.

At the end of your program output the biggest and the smallest.

You will need to alter your Fraction class to include a compareTo method, and you will need to consider carefully how you know one fraction is less than another

Your Fraction class should have add, subtract, multiply, divide methods.

Add these lines of code in main:

Fraction f = new Fraction(3, 4);

System.out.println(f);

f.setDenominator(-6);

System.out.println(f); //output from this should be -1/2

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

PostgreSQL 10 High Performance Expert Techniques For Query Optimization High Availability And Efficient Database Maintenance

Authors: Ibrar Ahmed ,Gregory Smith ,Enrico Pirozzi

3rd Edition

1788474481, 978-1788474481

More Books

Students also viewed these Databases questions

Question

the complement of theta = pi / 6 is

Answered: 1 week ago

Question

My opinions/suggestions are valued.

Answered: 1 week ago