#include #include using namespace std; int main() { { string str1("one"); string str2; str2 = str1; str2 = "two"; str2.assign("two").append(" ").append("three").append(" ").append("four"); cout