Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
#include
using namespace std; int main() { vector
cars = {"Volvo", "BMW", "Ford", "Mazda"}; vector
newcars(4); replace_copy(cars.begin(), cars.end(), newcars.begin(), (string)"Ford", (string)"Toyota"); for (string car : newcars) { cout << car << " "; } return 0; }
Volvo BMW Toyota Mazda