运行 ❯
获取你
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; vector<string> newcars(4); replace_copy(cars.begin(), cars.end(), newcars.begin(), (string)"Ford", (string)"Toyota"); for (string car : newcars) { cout << car << " "; } return 0; }
沃尔沃 宝马 丰田 马自达