在上面的输出中,我们可以观察到两个单词“John”和“Miller”,这意味着getline()函数也考虑了空格字符后的字符。 当我们不希望读取空格后的字符时,我们使用以下代码: #include<iostream>#include<string.h>usingnamespacestd;intmain(){stringprofile;// 变量声明std:...