字符串输入输出的相关知识点
include <iostream>
using namespace std;
int main()
{
char name1[5];
char name2[5];
cout<<"Please Enter Your Name1:n";
cin >> name1;
cout<<"Please Enter Your Name2:n";
cin >> name2;
cout << "Your Name1 is " << name1 << " Your Name2 is " << name2 << endl;
return 0;
}
上述代码可以有一下两种输入方式,结果一样的:
Please Enter Your Name1:
Mark Ykp
Please Enter Your Name2:
Your Name1 is Mark Your Name2 is Ykp
Please Enter Your Name1:
Mark
Please Enter Your Name2:
Ykp
Your Name1 is Mark Your Name2 is Ykp
有这两种输入方式的原因是因为cin不能通过键盘输入空字符�
来结束字符串,所以cin使用空白(空格、制表符和换行符)来确定字符串的结束位置。这意味cin在获取字符串数组时只能读取一个单词。之后的单词会放在输入队列中,当有新的cin后就出队列到cin中。这也就是为什么会有两种输入方法。