Question: NEED IN C++ Question #3. Programming Using Arrays (4 pts) Write a program that will Prompt for and read the number of integers they want

NEED IN C++
Question #3. Programming Using Arrays (4 pts) Write a program that will Prompt for and read the number of integers they want to manipulate (minimum 4). -Create an array of integers that size. - Read that many integers values which you store in the array. Display the content of the array. Ask the user if they want to rotate the numbers in the array left or right. - Rotate right means: rotate the content of the array to the right by one slot. The last number in the array becomes the first number in the array. o o Rotate left means: rotate the content of the array to the left by one slot. The first number in the array becomes the last number in the array. Show the content of the array again. For example if the array contained 1 2 3 4, after the right rotate operation it is to contain 4 1 2 3. 1 2 3 4 rotated left results in 2 3 4 1 in the array Here are a couple of sample output screens to illustrate the expected behaviour of your program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
