1.取得包含空格的字串:getline(cin,str1); -->str1代表字串變數
2.字串相加(有兩個方式):(1)兩個字串用+相加(str1 + str2)、(2)str1.append(str2)。str1代表字串1、str2代表字串2