Question: C++ p2 1) Write a code snippet which asks the user to enter city names until DONE is entered and stores the cities entered in

C++

p2

1) Write a code snippet which asks the user to enter city names until "DONE" is entered and stores the cities entered in a string vector. Then print the cities that were entered but in reverse order.

2) Write a function printAll which takes as a parameter a vector of Point2D objects and prints all their locations. The function returns nothing.

3) Write a function moveAll that takes as a parameter a vector of Point2D objects, and two int parameters moveX and moveY and moves all the points by moveX and moveY. The function returns nothing. Create a vector of points in the main and add 3 points to it. Call the function to move all the points by -2, 5. Then, call the printAll function and verify that they have moved.

4) Write a function combine which takes two vectors of student names, group1 and group2 and returns a vector containing all the students in both groups. Call your function from the main with two groups you create and then print the result returned from the function.

5) Describe briefly how vectors are like arrays and how they are more powerful than arrays.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!