Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Using Java write a class Compare3 that provides a static method largest. Method

ID: 3816606 • Letter: U

Question

Using Java write a class Compare3 that provides a static method largest. Method largest should take three Comparable parameters and return the largest of the three (so its return type will also be Comparable). Recall that method compareTo is part of the Comparable interface, so largest can use the compareTo method of its parameters to compare them.

Write a class Comparisons whose main method tests your largest method above.

First prompt the user for and read in three strings, use your largest method to find the largest of the three strings, and print it out. (It’s easiest to put the call to largest directly in the call to println.) Note that since largest is a static method, you will call it through its class name, e.g., Compare3.largest(val1, val2, val3).

Add code to also prompt the user for three integers and try to use your largest method to find the largest of the three integers. Does this work? If it does, it’s thanks to autoboxing, which is Java 1.5’s automatic conversion of ints to Integers. You may have to use the -source 1.5 compiler option for this to work.

Explanation / Answer

HI, Please find my implementation.

please let me know in case of any issue.

Please rate my answer.

############# Compare3.java ############

/*

* @author: Pravesh Kumar

* #section: 1

*/

public class Compare3 {

  

   // this method compares three values and return largest value

   public static Comparable largest(Comparable x, Comparable y, Comparable z){

      

       if(x.compareTo(y) > 0){

           // x > y && x > z

           if(x.compareTo(z) > 0)

               return x;

           else // z >=x > y

               return z;

       }else{ // y >=x

           //y >=x && y > Z

           if(y.compareTo(z) > 0)

               return y;

           else // z >= y >==x

               return z;

       }

   }

}

############### Comparison.java ##########

import java.util.Scanner;

/*

* @author: Pravesh Kumar

* #section: 1

*/

public class Comparisons {

  

   public static void main(String[] args) {

      

       // scanner object to take user input

       Scanner sc = new Scanner(System.in);

      

       System.out.println("Name: Pravesh Kumar, Section: 1");

      

       System.out.println("Enter three string value: ");

       String first = sc.next();

       String second = sc.next();

       String third = sc.next();

      

       System.out.println("largest: "+Compare3.largest(first, second, third));

      

       System.out.println();

      

       System.out.println("Enter three integer value: ");

       int x = sc.nextInt();

       int y = sc.nextInt();

       int z = sc.nextInt();

       System.out.println("largest: "+Compare3.largest(x, y, z));

   }

}

/*

Sample run:

Name: Pravesh Kumar, Section: 1

Enter three string value:

pravesh

mukesh

apple

largest: pravesh

Enter three integer value:

5

3

7

largest: 7

*/

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote