Class rational for method and constructor


Question1. Create a class Rational to provide at least following methods and constructors:

Rational r1= new Rational (3,5);
Rational r2= new Rational (4,7);
Rational r3=r1.add(r2);
// also sub,mult,divide methods
Other that four operations you should provide methods which you think are useful for user of your class.

Question2. Write a JFrame or JApplet (file name: TestRational.java) which performs the subsequent tasks:

i) Describe two arrays of size 10. Each element in the array references to a rational object which you wrote.

      Rational a[], b[];
      a = new Rational[10];
      b = new Rational[10];

637_rational denominator.jpg

               
ii) Initialize the arrays in Question a) by making random Rational numbers. Do this by generating two random numbers between 1 and 9 for each Rational and using the numbers as the numerator and denominator. Denominator must be greater than Numerator. You must generate random numbers with Math.random.

iii) Display the contents of both arrays on the screen using JTextArea.

iv) Add a Scrollbar to JTextArea for scrolling up or down.

v) For each public method in rational class, create a corresponding JButton object. When the user clicks on a button, the actionPerformed listener must execute the corresponding rational method for all the elements in the two arrays and store the results in a new array. You must then display the result array in the JTextArea using the setText method. For example, if the user hits the add button you should loop through all the elements in arrays and execute:
   c[i] = a[i].add(b[i]);

v) If the user hits the sort button, uses the JTextArea method appends to append the results of sorting.

 

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: Class rational for method and constructor
Reference No:- TGS0616

Expected delivery within 24 Hours