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