Develop a program which allows the user to enter numbers

Assignment Help JAVA Programming
Reference no: EM132430688

Here are the requirements:

Develop a program which allows the user to enter numbers into an array. Input will be as follows: The user will enter the total number of integers to be entered into the array. The user will then enter that number of unique integers (negative or positive). Do not allow the number of values entered to exceed the array size. Develop methods (SIX) to: 'main' method, Print the array, Sort the array ( YOU MUST DEVELOP YOUR OWN SORT METHOD - don't use the API classes), Determine the highest value, Determine the lowest value, Calculate the average value (double).

My professor suggested this:

Program Logic (algorithm):

- Prompt and get the size of the array

- Create the array of that size

- Loop through the initialization of the array

o Prompt the user for each value

o Save the value in the corresponding element

- Print the array

- Sort the array

- Print the array again

- Output the highest value

- Output the lowest value

- Output the average

This is the code I already created:

import java.util.Scanner;

public class UserArray {

    public static void main(String[] args){
        int numElements, temp;

        Scanner keyboard = new Scanner(System.in);
        System.out.print("Enter number of elements you want in your array.");
        numElements = keyboard.nextInt();

        int num[] = new int[numElements];
        System.out.println("Enter your elements.");
        for (int i = 0; i < numElements; i++)
        {
            num[i] = keyboard.nextInt();
        }

        System.out.println("Your array before sorting: ");
        int i;
        for (i = 0; i < num.length; i++)
            System.out.print(num[i] + ", ");
        System.out.println();

        for (i = 0; i < numElements; i++)
        {
            for (int j = i + 1; j < numElements; j++) {
                if (num[i] > num[j])
                {
                    temp = num[i];
                    num[i] = num[j];
                    num[j] = temp;
                }
            }
        }

        double[] arr = new double[numElements];
        double total = 0;

        for(i=0; i<arr.length; i++){
            arr[i] = num[i];
        }

        for(i=0; i<arr.length; i++){
            total = total + arr[i];
        }

        double average = total / arr.length;

        System.out.print("Your array after sorting: ");
        for (i = 0; i < numElements - 1; i++)
        {
            System.out.print(num[i] + ", ");
        }
        System.out.print(num[numElements - 1]);

        System.out.println("nHighest value: " + num[i]);
        System.out.println("Lowest value: " + num[0]);
        System.out.format("The average is: %.2f", average);
    }
}

Reference no: EM132430688

Questions Cloud

How you will purchase raw materials or new it systems : The sourcing plan can address how to supply resources to staff, your current and future systems, and how you will purchase raw materials or new IT systems.
Declare an array of double type : Declare an array of double type, with size 10. Use a regular for loop to generate 10 random double type variables and fill them into the array.
How Francines environment have influenced aging process : Identify an additional strategy you might use to apply your knowledge of the aging process to social work practice with older clients in general.
Mitigating wireless risk : Suggest two of the risks and two of the benefits associated with the implementation of wireless networks.
Develop a program which allows the user to enter numbers : Develop a program which allows the user to enter numbers into an array. Input will be as follows: The user will enter the total number of integers
Design a rectangle calculator with the basic functions : Java GUI program by using appropriate JLables, JTextFields, Jbuttons, etc. to design a Rectangle Calculator with the following basic functions:
What are the basic structures of a neuron : What are the basic structures/functions of a neuron? How do neurons communicate? What are the major structures of the brain? What is the function of each.
How would a uml diagram look like : How would a UML diagram look like that meets the following requirements?
Permissions and access control : Permissions and access control are given based on what users need and not on what they want. This is called the policy of least privilege.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd