Так vector y; y.push_back("п"); y.push_back("р"); y.push_back("и"); y.push_back("в"); y.push_back("е"); y.push_back("т"); string x = ""; for (auto yy : y) { x += yy; } x.clear(); for (auto yy : y) {...