char str[20];
gets(str);
char str[100];
scanf("%[^\n]",str);//直到输入回车键,读取才结束
string str;
getline(cin,str);//getline函数遇到回车符结束