Below is code which defines and creates an Array, myList: int [] myList = new int [5]; //define and create The loop below stores the values 1 to 5 in myList: for (int i = 0; i


Below is code which defines and creates an Array, myList: int [] myList = new int [5]; //define and create
The 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); }
}
1
CPS 2231 Chapter 7 – lab 2 Fall 2019
Use 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. main
b. printHigherThanAverage
public 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 double
3) In a loop
a. Ask the user for 5 values using a Scanner. b. Store the values in the array
c. Sum the values
4) At the end of the loop:
a. Calculate the average.
b. Call the method printHigherAverage and pass it the array and
the average.

Jun 02, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here