①、使用cin的成员函数getline,代码如下: char str1[20]; cin.getline(str1,20); //第一个参数代表字符数组的指针,第二个参数代表写入的最大长度 ②、使用istream类的一个类方法,代码如下: string str2; getline(cin,str2); 图片如下: 运行结果如下:...