Declare an array of double type

Assignment Help JAVA Programming
Reference no: EM132430691

Java programming

  1. Declare an array of double type, with size 10.
  2. Use a regular for loop to generate 10 random double type variables and fill them into the array. The range of the random variables is between 0 and 100, including 0 and excluding 100. Use method Math.random().
  3. Invoke a method named printArray in the same class, to print all elements of this array in one line, with a space separating adjacent array elements, and then output an end-of-line symbol at the end. You should use "printf" method to specify the output to have only 2 digits after the decimal point for each double type variable. This method "printArray "takes only one parameter, which is a double type one-dimensional array, and the method return type should be void. Use a for-each loop in this method to navigate through the array.
  4. Invoke a method name sort in the same class, to sort this array in decreasing order. This method takes only one parameter, which is a double "type" array" and its return type should be void. You must choose one of these three algorithms: selection, insertion, or bubble sort. The source code of these three algorithms locates in zip file "search-and-sorting.zip". You need to modify the source code of the sorting algorithm you choose, and make it usable in this homework.

Note: you cannot invoke any existing sorting method from any Java library class, such as the sort method in java class Arrays. The purpose of this homework is to let you modify the sorting algorithm source code thus get a better understanding of how a sorting algorithm works internally. But if you just call a sort method in the Java jdk library, you lost the whole purpose of this homework, and you will receive zero point.

  1. Invoke method printArray again to print the array to the screen, to verify that it has been sorted.

public class NameHw6 {

public static void main(String[] args)

{

final int SIZE = 10;

 

double [] scores = new double [SIZE];

for(int i = 0; i < scores.length; i++)

{

scores[i] = (double) (Math.random() * 100);

}

System.out.println("Before Sort: ");

printArray(scores);

sort(scores);

System.out.println("nAfter Sort: ");

printArray(scores);

}

private static void sort(double[] values) {

  int i, j;

  double temp;

  int numValues=values.length;

  // outer loop to travel through the all elements

  for (i = 0; i < numValues - 1; i++) {

     // inner loop to compare the outer loop elements

 

     for (j = 0; j < numValues - i - 1; j++)

        // if element at j< than j+1 than swap both

        if (values[j] > values[j + 1]) {

           // swap logic

           temp = values[j];

           values[j] = values[j+1];

           values[j+1] = temp;

        }

 

  }  

}

private static void printArray(double[] scores) {

  for (double eachElement: scores)

{

System.out.printf("%4.1f ", eachElement);

}  

}

}

 

Reference no: EM132430691

Questions Cloud

Instantiate a new array named myfavoritemovies : Instantiate a new array named myFavoriteMovies with 6 type String components. Call method inputArray to fill the array with your favorite movies
Conduct an assessment of the health care environment : Conduct an assessment of the health care environment where you work (i.e. health department, long-term care facility, specialty clinic, inpatient hospital, etc)
Looking forward into the future of air transportation : Looking forward into the future of air transportation, where do you see air transportation in the next 25 years? Will we see autonomous aircraft?
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:

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