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

  Write a java program that revise the meanmedian class

Write a Java program that Revise the MeanMedian class so that the user can enter any number of values up to 20. If the list has an even number of values, median is the numeric average of the values in the two middle positions.

  Dijikstra for undirected graph using simple scheme

Dijikstra for undirected graph using simple scheme with array and fibonacci heap and compare the performance/results, preferably in java.

  Write a method for computing tax

Financial application: print a tax table- gives a program to compute tax. Write a method for computing tax using the following header

  Write the definitions of the method copyqueue

Write the definitions of the method copyQueue and the copy constructor for the class QueueClass. Write a program to test these operations

  Characteristics and features of programming in java

Discuss the principles, characteristics and features of programming in Java - critically evaluate the environmental flexibility of programming in Java.

  Build the gui layout of the game

Build the Build the GUI layout of the game in java.

  Program that will calculate monthly mortgage payments

Consumers think of the term of the loan in years, not months.  It would still be good to tell them how many monthly payments they will be making.

  A game of tic-tac-toe

A game of tic-tac-toe, two players (one the computer) take turns marking an available cell in a 3 X 3 grid (a two dimensional array) with their respective tokens (either and X or an O). When one player has placed three tokens in a horizontal

  Demonstrate the use of array or arraylist

It will calculate the additional amount of sales that each salesperson must achieve to match or exceed the higher of the two earners. The application should ask for the name of each salesperson being compared.

  Test plan outline a test plan for a substantial real-life

test plan outline a test plan for a substantial real-life system of your choosing. some possible examplesbullbaggage

  Dangerousmonster which inherits the monster

An interface - DangerousMonster which inherits the Monster interface and has a method called destroy() with void return type.(Note: Just like a class can inherit from another class, an interface can inherit from another interface using the "extends..

  Development of an automated atm machine using java

Development of an Automated ATM Machine using Java - The ATM application stack shall be loaded to a fully-equipped ATM machine with complete CPU power, chip card reader, secure crypto-processor, display monitor, function keys, in-built printer and ..

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