Write a statement to declare and initialize an array named denominations that contains exactly 6 elements of type of int. Your declaration statement should initialize the elements of the array to the following values : 1, 5, 10, 25, 50, 100. (The value 1 goes into the first element, the value 100 to the last.)

Respuesta :

ijeggs

Answer:

int [ ] denominations = {1, 5, 10, 25, 50, 100};

Explanation:

In Java programming language, an array can be declared in two ways:

  1. By creating the array object with the specified size using the new keyword,  int [] denominations = new int [6]; This will create an empty array object called denominations
  2. The second way is declaring and initializing the values of the array as has been done in the question.