Goals: Practice using arrays in simple ways. Roll Over Name the source file for this section rollover.cpp. Create a program with a single function, main, which uses an array of ints to store 3 numbers of your choice. Output each number stored in the array to a separate line on the console. Do not use a loop anywhere in the program. Sit Up Name the source file for this section situp.cpp. Do the same as the last part, but make the array have a size of 10, and now use a loop to output the contents of the array. Be sure you output a newline at the end of your output.
Explanation / Answer
rollover.cpp // header files #include #include using namespace std; // driver method int main() { int arr[3]; arr[0] = 10; arr[1] = 11; arr[2] = 12; cout