Question: please use Java Develop a Java application (ArrayMethods java) that reads 12 integers into an array. The application should call five static methods (from the


Develop a Java application (ArrayMethods java) that reads 12 integers into an array. The application should call five static methods (from the main method) that in turn: (1) display all the integers, (2) display all the integers in reverse order, (3) display the sum of the integers, (4) display all values less than a limiting argument, and (5) display all values that are higher than the calculated average value. import java.util.Scanner; public class ArrayMethods\{ public static void main(String[] args) final int LENGTH=10; int limit =5; int[] intArray = new int[LENGTH]; Scanner scan = new Scanner ( System.in); System.out.print("Enter 10 integers: "); for(int i=0;i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
