Write a program that prompts the user to enter phrases (can contain spaces) until they say they’re done, then prints out the phrases in the reverse order they were entered. You must use an array.
1
Expert's answer
2015-12-02T08:04:38-0500
#include <iostream> #include <vector> using namespace std;
Comments
Leave a comment