Below is code which defines and creates an Array, myList: int [] myList = new int [5]; //define and createThe loop below stores the values 1 to 5 in myList:for (int i = 0; i < 5;="" i="" ++)="">myList [ i ] = i + 1; //store values using a loop}The loop below prints the values from first to last in myList:for (int i = 0; i < mylist.length;="" i++)="" {="" system.out.print(mylist="" [="" i="" ]="" +="" "="">}The code below is used to get user from the user and calculate the sum:import java.util.*;public class WhileWithInput {public static void main(String[] args) {Scanner reader = new Scanner (System.in);int count = 1; double total = 0; while (count <= 5)="">=>System.out.println("Enter a decimal number"); double number = reader.nextDouble();total = total + number;count = count + 1;System.out.println("The total is " + total); }System.out.println("The total is " + total); }}1CPS 2231 Chapter 7 – lab 2 Fall 2019Use the examples on page 1 to complete the lab below. Please submit a screen print of the Eclipse editor showing your code and output with answers:Write a Java class, XXX_Lab75, where XXX is your Kean email ID. The class will do the following:1) Consist of two methods: a. mainb. printHigherThanAveragepublic static void printHigherAverage(double [] numbers, double avg)The method will print all the numbers in the array, numbers, which are higher than the average.2) In the main methods, create an Array which can contain 5 elements of type double3) In a loopa. Ask the user for 5 values using a Scanner. b. Store the values in the arrayc. Sum the values4) At the end of the loop:a. Calculate the average.b. Call the method printHigherAverage and pass it the array andthe average.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here