用cin输入string字符串时,默认遇到空格回车制表符等空白字符即字符串输入结束。
因此遇到带空格字符的字符串就会出现问题,此时需要用到getline函数,getline()是遇回车符输入结束。
string字符串的基本输入格式是:
cpp
getline(cin,name);
cpp
//reading more than one word with getline
#if 1
#include<iostream>
#include<string>//要使用string类,必须在程序中包含头文件string。
using namespace std;
int main()
{
//const int Arsize = 20;
string name;
string dessert;
cout << "Enter your name:\n";
getline(cin,name);
cout << "Enter your favorite dessert:\n";
getline(cin,dessert);
cout << "I have some delicious " << dessert << " for you, " << name << "." << endl;
system("pause");
return 0;
}
#endif