Question: Write a Java application that contains the following: A static method named removeLastOdd that receives an unsorted list of integers of type ArrayUnsortedList class. Your
Write a Java application that contains the following:
A static method named removeLastOdd that receives an unsorted list of integers of type ArrayUnsortedList class. Your method should remove and return the last occurrence of an odd number, if any exist, from the given list. Keep the list unchanged and return -1 in case there are no odd numbers in the given list.
A main method that creates an unsorted list of integers. Fill the list with any number of integers from the user. Print the list on screen. Use removeLastOdd method to remove and print the last occurrence of odd number in the list. Print "nothing" if the list does not contain any odd number.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
