Question: In Java create a program that does the following: 1. creates an ArrayList of integers 2. prompts the user to enter integers and adds them
In Java create a program that does the following:
1. creates an ArrayList of integers
2. prompts the user to enter integers and adds them to the ArrayList
3. calls the generic method max to print out the largest element in the ArrayList.
4. creates an ArrayList of Strings
5. prompts the user to enter Strings and adds them to the ArrayList
6. calls the generic method max to print out the largest element in the ArrayList.
7. Implements the following generic method that returns the largest element in an ArrayList:
public static > E max(ArrayList list)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
