// Lab 9 review // Finish the program by adding // code where indicated below #include using namespace std; int main() { // size of array const int SIZE = 5; // ADD CODE HERE - declare an array of // floats named myArray with SIZE elements. // get numbers from user and put them // into the array. cout << "Enter " << SIZE << " numbers:" << endl; for(int i = 0; i < SIZE; i++) { cin >> myArray[i]; } // ADD CODE HERE - Using a FOR loop divide // each value in myArray by 2 and reassign // them back into the array. // ADD CODE HERE - print the array to the console return 0; }