📅  最后修改于: 2022-03-11 14:44:53.383000             🧑  作者: Mango
#include #include using namespace std; int main () { //Declare three variables str1, str2, str3 string str1 = "Hello"; string str2 = "World"; string str3; int len ; // copy str1 into str3 str3 = str1; // concatenates str1 and str2 str3 = str1 + str2; return 0; }