Write a statement to declare and initialize an array of int named denominations that contains exactly six elements. 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.)
LANGUAGE: C++
CHALLENGE:
Write a statement to declare and initialize an array of int named denominations that contains exactly six elements. 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.)
SOLUTION:
int denominations[6] = {1,5,10,25,50,100};