Question: Write a JAVA program that asks the user to store 10 numbers in an array. You should then print the array in the order entered
Write a JAVA program that asks the user to store 10 numbers in an array. You should then print the array in the order entered and then print in reverse order. Design the program as an OO (object-oriented) program as follows:
Create a class called PrintIt. The PrintIt class should have an instance variable that is an array to hold the numbers. This instance variable should be initialized in the constructor. You should have a method that will print the array in the order entered. You will also need a method that will print the array in reverse order.
You will need a tester class that asks the user to enter 10 numbers and puts them in an array. Create an object sending the array to the constructor. Call each of the print methods.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
